fork download
  1. #include <bits/stdc++.h>
  2. #define FOR(i, a, b) for (int i = (a), _b = (b); i <= _b; i++)
  3. #define FORD(i, b, a) for (int i = (b), _a = (a); i >= _a; i--)
  4. #define ALL(x) x.begin(), x.end()
  5. #define RALL(x) x.rbegin(), x.rend()
  6. #define MASK(x) (1LL<<(x))
  7. #define BIT(x, i) (((x)>>(i))&1)
  8. #define el cout<<"\n";
  9. using namespace std;
  10. const int MAXN = 1e5 + 5;
  11.  
  12. main(void) {
  13. ios_base::sync_with_stdio(0);
  14. cin.tie(0); cout.tie(0);
  15.  
  16. return 0;
  17. }
  18. // T.T<33~~
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
Standard output is empty