fork(1) download
  1. #include <iostream>
  2. #include <chrono>
  3. #include <limits>
  4. using namespace std;
  5.  
  6. int main() {
  7. using namespace std::chrono;
  8. std::cout << std::numeric_limits<unsigned long long>::max() << "\n" << duration_cast<microseconds>(system_clock::now().time_since_epoch())
  9. .count();
  10. return 0;
  11. }
Success #stdin #stdout 0s 5672KB
stdin
Standard input is empty
stdout
18446744073709551615
1628175231363898