fork download
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. #define int long long
  6. #define ld long double
  7. #define eb emplace_back
  8. #define pb push_back
  9. #define fi first
  10. #define se second
  11. #define nn '\n'
  12. #define pi pair<int, int>
  13. #define unmp unordered_map
  14. #define uns unordered_set
  15. #define lb lower_bound
  16. #define ub upper_bound
  17. #define pq priority_queue
  18. #define TASK " "
  19.  
  20. #define FOR(i, a, n) for(int i = (a) ; i <= (n) ; i++ )
  21. #define FORD(i, a, n) for(int i = (a); i >= (n); i--)
  22. #define FORX(i, x) for(int (i) : (x))
  23. #define ms(a, x) memeset((a), (x), sizeof((a)))
  24. #define all(a) (a).begin(), (a).end()
  25. #define All(a, n) (a) + 1, (a) + 1 + n
  26.  
  27.  
  28. const int INF = 1e18;
  29. const int mod = 1e9+7;
  30. const int N = 1e3 + 5;
  31. int MOD = 998244353;
  32. int bit[200000];
  33.  
  34. signed main() {
  35. //freopen("CSBN.INP", "r", stdin);
  36. //freopen("CSBN.OUT", "w", stdout);
  37. ios_base::sync_with_stdio(0);
  38. cin.tie(0);
  39. cout.tie(0);
  40. return 0;
  41.  
  42. }
  43.  
Success #stdin #stdout 0.01s 5316KB
stdin
Standard input is empty
stdout
Standard output is empty