print( "Please use captital letter at the beginning of each word" ) Day = input( "What day of the is it? " ) Holiday = input( "Is it a holiday? " ) if Day == "Sunday" or "sunday": print( "You should stay in bed snoozing!" ) elif Day == "Saturday" or "saturday" : print( "You should stay in bed snoozing!" ) elif Holiday == "Yes" or "yes": print( "You should stay in bed snoozing!" ) else: print( "You should not stay in bed snoozing!" )