summaryrefslogtreecommitdiff
path: root/template/template.cpp
blob: 48c2b99fefae0576f925aa1836afed3346feb8aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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 sz(x) ((int)(x).size())
#define all(x) (x).begin(), (x).end() 
#define _ << " " <<
#define debug(x) #x << " = " << (x)
 
using ll = long long;
using ld = long double;
using pii = std::pair<int, int>;

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