day = input("What day of the week is it? ")
holiday = input("Is it a holiday? ")
if day == "Saturday" or "saturday" or "Sunday" or "sunday" and holiday == "yes" or "Yes" :
    print ("You should stay in bed snoozing!")
if day == "Monday" or "monday" or "Tuesday" or "tuesday" or "Wednesday" or "wednesday" or "Thursday" or "thursday" or "Friday" or "friday" and holiday == "No" or "no" :
    print ("Get out of bed.")