fork download
  1. //The author of this beautiful code is Tamjid Ul Haque
  2. #include <bits/stdc++.h>
  3. using namespace std;
  4. #define optimize() ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
  5. #define pb push_back
  6. #define eb emplace_back
  7. #define ppb pop_back
  8. #define ll long long int
  9. #define ld long double
  10. #define tamjid(t) int T;cin>>T;for(int t = 0 ; t < T ; ++t)
  11. #define nestedloop(d,e) for(int j = d ; j < e ; ++j)
  12. #define loop(g) for(int i = 0 ; i < g ; ++i)
  13. #define lin(k) ll k ; cin >> k ;
  14. #define sin(s) string s ; cin >> s ;
  15. #define sorted(v) sort(v.begin(),v.end());
  16. #define rsorted(v) sort(v.rbegin(),v.rend());
  17. #define flip(v) reverse(v.begin(),v.end());
  18. #define yes cout << "YES" << endl
  19. #define no cout << "NO" << endl
  20. #define printvector(vec) for(auto val:vec) cout << val << " "
  21. #define gcd __gcd
  22. #define PI 3.1415926535
  23. #define endl '\n'
  24. #define printtwo(a,b) cout << a << " " << b << endl ;
  25. #define print(z) cout << z << endl ;
  26. #define mod 1e7 + 7 ;
  27. const int mxsz = 1e7+23;
  28. int Arr[mxsz];
  29. vector<int> Vec(mxsz);
  30. map<ll, int> mp;
  31.  
  32.  
  33. int main() {
  34. int n ;
  35. cin >> n ;
  36. print(n) ;
  37. return 0 ;
  38. }
Success #stdin #stdout 0.01s 42092KB
stdin
1
stdout
1