Dorothydu's picture
Add files using upload-large-folder tool
11c6595 verified
days = int(input("Enter the number of days: "))
hours = days * 24
minutes = hours * 60
seconds = minutes * 60
print("In",days,"days are", hours,"hours,", minutes,"minutes and", seconds,"seconds")