fork download
  1. d=30
  2. m=60
  3. h=24
  4. s=60
  5. t=d*m*h*s
  6. print(t)#
  7. d=7
  8. m=60
  9. h=24
  10. s=60
  11. t=d*m*h*s
  12. print(t)
Success #stdin #stdout 0.01s 7200KB
stdin
Standard input is empty
stdout
2592000
604800