def greeting_to_choose(time):
if (time) >= 4 and <= 12:
print("Good morning!")
elif (time) >= 13 and <= 17:
print ("Good afternoon!")
elif (time) >= 18 and <= 22:
print("Good evening!")
else:
print("Good night!")
time = 11