d = input("What day of the week is it? ") h = input("Is it a holiday? ") if d == "sunday": print("You should stay in bed snoozing.") elif d == "saturday": print("You should stay in bed snoozing.") elif h == "yes": print("You should stay in bed snoozing.") else: print("You should wake up.")