Template Contest
Small template with the most essential things to be typed at the start of the contest and used for all problems.
Code
Template Contest
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define endl '\n'
#define V vector
#define all(x) begin(x),end(x)
#define sz(x) (int)size(x)
#define loop(i,n) for (int i = 0; i < (n); i++)
signed main() {
ios::sync_with_stdio(false); cin.tie(nullptr);
}