fork download
  1. #include <stdint.h>
  2. #include <iostream>
  3.  
  4. int main()
  5. {
  6. uint64_t largeInt = 1234567890000ULL;
  7.  
  8. std::cout << largeInt << std::endl;
  9. return 0;
  10. }
Success #stdin #stdout 0s 2896KB
stdin
Standard input is empty
stdout
1234567890000