fork(1) download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5. // 一年の秒数
  6. int seconds = 365 * 24 * 60 * 60;
  7.  
  8. // 以下のコメント/* */を消して追記する
  9. cout << seconds << endl;
  10. cout << 2*seconds << endl;
  11. cout << 5*seconds << endl;
  12. cout << 10*seconds << endl;
  13. }
  14.  
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
31536000
63072000
157680000
315360000