code.cpp 58 B

123
  1. int howManySeconds(int hours) {
  2. return hours * 60 * 60;
  3. }