Hours= int(input("What Hour is it?"))
Minutes= int(input("What Minute is it?"))
if Hours<12:
print(Hours , (':'), Minutes)
elif Hours>12:
print(Hours-12 ,(':'), Minutes)
I'm trying to make the following code go to the closest quarter/15 minutes but don't know how. Any help would be appreciated