n = input("What day of the week is it?") X = 0 if n == ("sat" or "sun"): X = 0 if n == ("mon" or "tue" or "wed" or "thu" or "fri"): X = 1 B = input("Is it a holiday?") if B == ("yes"): X = 0 if B == ("no"): X = 1 if X == 0 : print("You should stay in bed snoozing!") if X == 1: print("You should not stay in bed snoozing!")