day_of_week = input("What day of the week is it? (mon, tue, wed, etc.): ").lower()


is_holiday = input("Is it a holiday? (yes or no): ").lower()

if is_holiday == 'yes' or day_of_week in ['sat', 'sun']:
    print("You should stay in bed snoozing!")
else:
    print("You should get up and get going!")