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

using ii = pair<int, int>;
using vi = vector<int>;
using ll = long long;
using ld = long double;

void solve() {
}

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