Advertisement
Robert_JR

Template

Jun 1st, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.67 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstdio>
  3. #include <algorithm>
  4. #include <math.h>
  5. #include <string>
  6. #include <cstdlib>
  7. #include <cstring>
  8. #include <stack>
  9. #include <queue>
  10. #include <vector>
  11. #define IN freopen("f:\\in.txt", "rt", stdin);
  12. #define OUT freopen("f:\\out.txt", "wt", stdout);
  13. #define FOR(n) for(int i = 0; i < n; i++)
  14. #define LL long long int
  15. #define STESTCASE int t;scanf("%d", &t);getchar();for(int tc = 1; tc <= t; tc++)
  16. #define TESTCASE int t;scanf("%d", &t);for(int tc = 1; tc <= t; tc++)
  17. #define PF printf
  18. #define SF scanf
  19. #define EP 0.000000001
  20. #define MAX 1000
  21. #define D cout << "Debugg" << endl;
  22. using namespace std;
  23.  
  24. int main()
  25. {
  26.  
  27.     return 0;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement