Skip to content

Instantly share code, notes, and snippets.

@imedadel
Created April 21, 2019 12:47
Show Gist options
  • Save imedadel/faf3f1d8e2cd06fc040cd18bed6e6b7e to your computer and use it in GitHub Desktop.
Save imedadel/faf3f1d8e2cd06fc040cd18bed6e6b7e to your computer and use it in GitHub Desktop.
#include <bits/stdc++.h>
using namespace std;
#define rep(i, a, b) for(int i = a; i < (b); ++i)
#define trav(a, x) for(auto& a : x)
#define all(x) x.begin(), x.end()
#define sz(x) (int)(x).size()
typedef long long ll;
typedef pair<int, int> pii;
typedef vector<int> vi;
int main() {
cin.sync_with_stdio(0); cin.tie(0);
cin.exceptions(cin.failbit);
// insert your code here
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment