fork download
  1. #include <iostream>
  2. #include <vector>
  3. #include <string>
  4. #include <algorithm>
  5. #include <set>
  6. #include <fstream>
  7. #include <climits>
  8. #include <cmath>
  9. #define ff first
  10. #define ss second
  11. #define pb push_back
  12. typedef long long ll;
  13. typedef unsigned long long ull;
  14. typedef long double ld;
  15. ll mod = (ll)1e9;
  16. using namespace std;
  17. long long gcd (long long a, long long b) {
  18. return !a || !b ? a + b : gcd(b % a, a);
  19. }
  20.  
  21. int main() {
  22. ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
  23. ll x = (ll)1e9, cnt = 0;
  24. for (ll i = 0; i < x; i++) {
  25. cnt++;
  26. }
  27. cout << cnt;
  28. return 0;
  29. }
Success #stdin #stdout 0s 4536KB
stdin
Standard input is empty
stdout
1000000000