fork download
  1. #include <iostream>
  2. #include <limits>
  3. int main(){
  4. std::cout << std::numeric_limits<uint64_t>::max() << std::endl;
  5. std::cout << 1000000*10000ULL << std::endl;
  6. return 0;
  7. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
18446744073709551615
10000000000