weekends = ['sat', 'sun'] day = input("What day of the week is it? ") holiday = input("Is it a holiday? ") if day in weekends or holiday == 'yes': print("You should stay in bed snoozing!") else: print("You should get out of bed.")