fork download
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3.  
  4. #define REP(i,s,n) for(int i=s;i<n;++i)
  5. #define rep(i,n) REP(i,0,n)
  6. #define SORT(c) sort((c).begin(),(c).end())
  7. #define IINF INT_MAX
  8. #define LLINF LLONG_MAX
  9. #define DEBUG false
  10.  
  11. typedef long long ll;
  12. typedef pair<int, int> ii;
  13.  
  14. int main() {
  15.  
  16. cout << 1 << endl;
  17.  
  18. return 0;
  19. }
Success #stdin #stdout 0s 16064KB
stdin
Standard input is empty
stdout
1