# Ask the user for the current time in hours (using a 24-hour clock)
current_time = int(input("What is the current time (in hours)? "))
# Ask the user for the number of hours to wait for the alarm
hours_to_wait = int(input("How many hours do you want to wait for the alarm? "))
# Calculate the time on the clock when the alarm goes off
alarm_time = (current_time + hours_to_wait) % 24
# Print the result
print("The alarm will go off at", alarm_time, "hours.")
##or to get the time from the device clock use this code : ##
import datetime
# Get the current time from the device clock
current_time = datetime.datetime.now().hour
# Ask the user for the number of hours to wait for the alarm
hours_to_wait = int(input("How many hours do you want to wait for the alarm? "))
# Calculate the time on the clock when the alarm goes off
alarm_time = (current_time + hours_to_wait) % 24
# Print the result
print("The alarm will go off at", alarm_time, "hours.")