seconds_input = int(input("Enter a number of second: ")) hours = seconds_input / 3600 minutes = seconds_input /60 print(hours, minutes)