summaryrefslogtreecommitdiff
path: root/template/template.cpp
blob: c40bcd5425a729ff19ef1159a4eb59675a14ec28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <bits/stdc++.h>
using namespace std;

#define fora(i, n) for (int i = 0; i < n; ++i)
#define forb(i, n) for (int i = 1; i <= n; ++i)
#define all(x) begin(x), end(x)
#define sz(x) (ll)size(x)
#define _ << " " <<
#define debug(x) #x << " = " << (x)

using ll = long long;
using ld = long double;

int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
}