You'll need to make sure you use integer division to find out how many
hours. Then, you can get the remainder by using the modulus operator
(%). Now, divide to get the number of minutes. Again, use modulus
for the remainder. This remainder is the number of seconds.
Breaking things into parts is a common use of integer division and
modulus.