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

using ll = long long;

void solve() { }

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