fork download
  1. #include <iostream>
  2. #include <iomanip>
  3. #include <string>
  4.  
  5. int main()
  6. {
  7. int secondIn3Hours=3*60*60;
  8. int _3MinutesInSeconds=3*60;
  9. int _5Minutes=5*60;// some programmer left a comment about 6 minutes - find her/him
  10. float valuePi=3.141526;
  11.  
  12. std::cout << "result: " << secondIn3Hours << std::endl;
  13. return 0;
  14. }
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
result:  10800