summaryrefslogtreecommitdiff
path: root/template/template.cpp
blob: b5b5a14dea1086c98e0640c95abcc51106d611b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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() {
	cin.tie(0)->sync_with_stdio(false);
}