''' hours and minutes converter to seconds ASKHSH AEPP NOUMERO 6 AUTHOR:ERRIKOS NTINOS DATE:07/02/2022 STATUS:VERIFIED ''' print"convert Hours and minutes to seconds" hours = input("give me the desired amount of hours: ") minutes = input("give me the desired amount of minutes: ") seconds = input("give me the desired amount of seconds: ") hours_to_seconds = hours*3600 minutes_to_seconds = minutes*60 total_seconds = hours_to_seconds+minutes_to_seconds+seconds print"the total amount in seconds is: ", total_seconds