day_of_week = input("What day of the week is it? ")
holiday = input("Is it a holiday? (yes or no) ")

if day_of_week == 'sat' or day_of_week == 'sun':
    print("You should stay in bed snoozing!")
elif holiday == 'yes':
    print("You should stay in bed snoozing!")
else:
    print("Get up and start your day!")