Created
April 21, 2019 12:47
-
-
Save imedadel/faf3f1d8e2cd06fc040cd18bed6e6b7e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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