# # A challenge to start the day... # # There are 60 seconds in a minute and 60 minutes in an hour. # Given the number of hours, minutes, and seconds left before # kickoff of the UNI football game tomorrow, how many total # seconds are left? # # Write a Python expression to compute the answer. # hours = input("Enter hours: ") minutes = input("Enter minutes: ") seconds = input("Enter seconds: ") answer = (int(hours) * 60 * 60) + (int(minutes) * 60) + int(seconds) print("There are", answer, "seconds left.")