aboutsummaryrefslogtreecommitdiff
path: root/Template/basic.cpp
blob: 4ad84f29cf4ddb2cbf5c3cb3643ed3911ee0d903 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <bits/stdc++.h>
#define f first
#define s second
using namespace std;
using ll = long long;
using ii = pair<int, int>;
const int MX = 1e5+5;

int main() {
	cin.tie(0)->sync_with_stdio(0);
	
	
}