[Like Time Decomposition (2), P22654, but for Python instead of C.]
Write a function decompose(n) that receives as argument a
quantity of seconds n, and returns how many hours h,
minutes m and seconds s it represents.
That is, we must have 3600h + 60m + s = n, with
0 <= s < 60 and 0 <= m < 60.
About statements
The official statement of a problem is always the one
in the PDF document. The HTML version of the statement
is also given to help you, but may contain some content
that is not well displayed. In case of doubt, always use the PDF.