fork download
  1. #include <map>
  2.  
  3. #include <set>
  4.  
  5. #include <cmath>
  6.  
  7. #include <stack>
  8.  
  9. #include <deque>
  10.  
  11. #include <queue>
  12.  
  13. #include <bitset>
  14.  
  15. #include <string>
  16.  
  17. #include <chrono>
  18.  
  19. #include <vector>
  20.  
  21. #include <iomanip>
  22.  
  23. #include <cstring>
  24.  
  25. #include <numeric>
  26.  
  27. #include <fstream>
  28.  
  29. #include <iostream>
  30.  
  31. #include <algorithm>
  32.  
  33. using namespace std;
  34.  
  35. #define debai
  36.  
  37. #define endl "\n"
  38.  
  39. #define NAME(x) #x
  40.  
  41. #define ll long long
  42.  
  43. //#define int long long
  44.  
  45. #define FILE(x) NAME(x)
  46.  
  47. #define MASK(i) (1LL << (i))
  48.  
  49. #define BIT(x, i) (((x >> i) & 1))
  50.  
  51. void input() {
  52.  
  53.  
  54.  
  55. }
  56.  
  57. void solve() {
  58.  
  59.  
  60.  
  61. }
  62.  
  63. void output() {
  64.  
  65.  
  66.  
  67. }
  68.  
  69. int32_t main() {
  70.  
  71. ios_base::sync_with_stdio(0);
  72. cin.tie(nullptr);
  73.  
  74. if (fopen(FILE(debai) ".inp", "r")) {
  75.  
  76. freopen(FILE(debai) ".inp", "r", stdin);
  77. freopen(FILE(debai) ".out", "w", stdout);
  78.  
  79. }
  80.  
  81. input();
  82.  
  83. solve();
  84.  
  85. output();
  86.  
  87. return 0;
  88.  
  89. }
Success #stdin #stdout 0s 5312KB
stdin
Standard input is empty
stdout
Standard output is empty