fork download
  1. // Author : decoder97 (short)
  2. /*
  3.  
  4. */
  5. #include<bits/stdc++.h>
  6. #define ll long long
  7. #define vll vector<long long>
  8. #define pb push_back
  9. #define ff first
  10. #define ss second
  11. #define SORT(v) sort(v.begin(), v.end())
  12. #define REVERSE(v) sort(v.rbegin(), v.rend())
  13. #define brk(x) cout << #x << " is " << x << endl;
  14. #define floop(i,g,n) for(auto i=g;i<n;i++)
  15. #define floopr(i,g,n) for(auto i=g;i>=n;i--)
  16. #define show_values(v) \
  17.   cout<< "\n"<<#v<<" : "; \
  18.   for(auto i : v) \
  19.   cout << i << " "; \
  20.   cout << "\n";
  21. #define nl cout<<"\n"
  22. using namespace std;
  23. void solve(){
  24.  
  25. }
  26. int main(){
  27. ios::sync_with_stdio(false);
  28. cin.tie(0);
  29. cout.tie(0);
  30.  
  31. // int tc;
  32. // cin>>tc;
  33. // while(tc--){
  34. solve();
  35. // }
  36.  
  37. return 0;
  38. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
Standard output is empty