# # 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_in = input("Enter hours: ") minutes_in = input("Enter minutes: ") seconds_in = input("Enter seconds: ") hours = int(hours_in) minutes = int(minutes_in) seconds = int(seconds_in) seconds_in_hours = hours * 60 * 60 seconds_in_minutes = minutes * 60 answer = seconds_in_hours + seconds_in_minutes + seconds print("There are", answer, "seconds left.")