Skip to content

Instantly share code, notes, and snippets.

@Chillee
Last active April 24, 2019 14:39
Show Gist options
  • Save Chillee/bef47acae34d3b0b9fb7435e01f68297 to your computer and use it in GitHub Desktop.
Save Chillee/bef47acae34d3b0b9fb7435e01f68297 to your computer and use it in GitHub Desktop.
Competitive Programming Template
#include <bits/stdc++.h>
#define all(x) begin(x), end(x)
typedef long long ll;
using namespace std;
signed main() {
ios::sync_with_stdio(0);
cin.tie(0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment