day = input("What day is it? ") hol = input("Is it holiday? ") if day == 'sat' or day == 'sun' or hol == 'yes': print("You should stay in bed snoozing!") else: print("Go back to Work!!!")