# This program prompts the user to enter the number of seconds.
# It then converts the seconds to hours, minutes and seconds, and prints the result.
import timeOps
print "Please enter the number of seconds: ",
sec = input()

timeOps.secsToHMS(sec)