fork(24) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int64_t x = (1e18 + 1);
  6. int64_t y = 1'000'000'000'000'000'001;
  7. std::cout << x << ' ' << y;
  8. return 0;
  9. }
Success #stdin #stdout 0s 3468KB
stdin
Standard input is empty
stdout
1000000000000000000 1000000000000000001