Advertisement
Guest User

Untitled

a guest
May 29th, 2016
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. #include <cstdio>
  2. #include <iostream>
  3. #include <cstdlib>
  4. #include <string>
  5. #include <cstring>
  6. #include <set>
  7. #include <map>
  8. #include <queue>
  9. #include <deque>
  10. #include <stack>
  11. #include <vector>
  12. #include <ctime>
  13. #include <cassert>
  14. #include <cmath>
  15. #include <iomanip>
  16. #include <algorithm>
  17. #include <iomanip>
  18. #include <fstream>
  19. using namespace std;
  20. #define fname ""
  21. #define F first
  22. #define S second
  23. #define pb push_back
  24. #define mp make_pair
  25. #define ll long long
  26. #define ull unsigned long long
  27. #define inf 1000000000
  28. #define INF 1000000000000000000ll
  29.  
  30. #include "point.h"
  31. #include "matrix.h"
  32. #include "figure.h"
  33. #include "pawn.h"
  34. #include "bishop.h"
  35. #include "knight.h"
  36. #include "rook.h"
  37. #include "queen.h"
  38. #include "king.h"
  39. #include "chessboard.h"
  40.  
  41. using namespace std;
  42. const int N = 20;
  43.  
  44. int main () {
  45.  
  46. return 0;
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement