C++ Specifics
Compiling
g++ a.cpp // compile the cpp fileExecuting
Fast I/O
cin.tie(0) -> sync_with_stdio(0);General Template
#include "bits/stdc++.h"
using namespace std;
int main(){
cin.tie(0) -> sync_with_stdio(0);
// ...
}Last updated