dow = input("What day of the week is it? ") if dow == 'sat': print("You should stay in bed snoozing!") elif dow == 'sun': print("You should stay in bed snoozing!") else : holiday = input("Is it a holiday? (y/n)") if holiday == 'y' : print("You should stay in bed snoozing!") else : print("You better get up!")