CrazzyBeer

Olympiad Template

May 1st, 2015
306
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.38 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. #define f(k,n) for (int k=0;k<n;k++)
  4. #define file
  5. #define pb push_back
  6. #define F first
  7. #define S second
  8. #define inf 1999999999
  9. #define mp(i,j) make_pair((i),(j))
  10. #define pii pair<int,int>
  11.  
  12. int main() {
  13.     #ifndef ONLINE_JUDGE
  14.         freopen("input.txt","r",stdin);
  15.         freopen("output.txt","w",stdout);
  16.     #endif
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment