fork download
  1. #include <iostream>
  2. #include <climits>
  3. using namespace std;
  4.  
  5. int main() {
  6. cout << LLONG_MAX << endl;
  7. cout << LLONG_MIN << endl;
  8. cout << ULLONG_MAX << endl;
  9. }
Success #stdin #stdout 0s 4304KB
stdin
Standard input is empty
stdout
9223372036854775807
-9223372036854775808
18446744073709551615