fork download
  1. #include<bits/stdc++.h>
  2.  
  3. /*** Input Output ***/
  4. #define pii pair<int, int>
  5. #define plll pair<ll, pll>
  6. #define pll pair<ll, ll>
  7. #define pdb pair<db, db>
  8. #define vi vector<int>
  9. #define vpdb vector<pdb>
  10. #define vl vector<ll>
  11. #define vdb vector<db>
  12. #define vb vector<bool>
  13. #define vs vector<str>
  14. #define vpii vector<pii>
  15. #define vpll vector<pll>
  16. #define vplll vector<plll>
  17. #define vpd vector<pd>
  18. #define IOS ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL)
  19.  
  20. #define ll long long
  21. #define ull unsigned long long
  22. #define str string
  23. #define db double
  24.  
  25. /*** Define Values ***/
  26. //#define mx 200005
  27. // #define mod 111539786
  28. #define PI acos(-1.0)
  29. #define eps 1e-7
  30. #define size1 15
  31.  
  32. #define pb push_back
  33. #define fi first
  34. #define se second
  35. #define mp make_pair
  36. #define mem(name, value) memset(name, value, sizeof(name))
  37.  
  38. /*** Sorts ***/
  39. #define all(v) (v).begin(), (v).end()
  40. #define rev(v) reverse(all(v))
  41. #define srt(v) sort(all(v))
  42. #define srtGreat(v) sort(all(v), greater<ll>())
  43.  
  44. /*** Some Prints ***/
  45. #define en cout << '\n';
  46. #define fi1 cout << "First\n"
  47. #define se2 cout << "Second\n"
  48. #define no cout << "NO\n"
  49. #define yes cout << "YES\n"
  50. #define case cout << "Case " << t++ << ": "
  51. #define whi while (ii<=n)
  52.  
  53. //loops
  54. #define FOR(i, a, b) for(int i=(int)a;i<=(int)b;i++)
  55. #define ROF(i, a, b) for(int i=(int)a;i>=(int)b;i--)
  56. #define rep(a, x) for(auto& a : x)
  57. #define MASK(x) (1ll<<(x))
  58. #define BIT(x, i) (((x) >> (i)) & 1)
  59. #define SQR(x) (x*x)
  60. const int MOD = 1e9+7;
  61. const ll MOD1 = 1e9+7;
  62. const int MAXN = 2e5+200;
  63. const int MAX = 5e3+20;
  64. const int LOG = 30;
  65. const ll base = 311;
  66. const ll INF = 1e18+2;
  67. const db pi = acos(1);
  68. const int EPS = 1e-9;
  69. using namespace std;
  70.  
  71. void solve(){
  72.  
  73. }
  74.  
  75. int main(){
  76. IOS;
  77. #ifndef ONLINE_JUDGE
  78. freopen("input.inp", "r", stdin);
  79. freopen("output.out", "w", stdout);
  80. #endif
  81. // int t=1;
  82. // cin>>t;
  83. // while(t--)
  84. solve();
  85.  
  86. }
Success #stdin #stdout 0.01s 5440KB
stdin
Standard input is empty
stdout
Standard output is empty