Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. typedef long long LL;
  6. typedef long double LD;
  7. typedef unsigned long long ULL;
  8. typedef vector<int> VI;
  9. typedef set<int> SI;
  10. typedef pair<int, int> PII;
  11. typedef pair<LL, LL> PLL;
  12. typedef vector<PII> VPII;
  13. typedef vector<PLL> VPLL;
  14.  
  15. const int INF = 1000000001;
  16. const LD EPS = 1e-9;
  17. const int MOD = 1000000007;
  18. const LL LLINF = 1000000000000000001;
  19.  
  20. //813437586
  21.  
  22. #define FOR(i, b, e) for(int i = b; i <= e; i++)
  23. #define FORD(i, b, e) for(int i = b; i >= e; i--)
  24. #define ALL(c) (c).begin(), (c).end()
  25. #define SIZE(x) ((int)(x).size())
  26. #define DPRINT(x) cout << #x << ": " << x << endl
  27. #define BOOST ios_base::sync_with_stdio(false); cin.tie(0)
  28.  
  29. #define MP make_pair
  30. #define PB push_back
  31. #define ST first
  32. #define ND second
  33. #define GGL(x) "Case #" << x << ": "
  34.  
  35.  
  36. /*************************** END OF TEMPLATE ***************************/
  37.  
  38.  
  39. int main()
  40. {
  41. BOOST;
  42.  
  43. cout << "1\n100000\n";
  44. FOR(i, 2, 100000)
  45. cout << "1 " << i << endl;
  46.  
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement