Dayofweek = input("What day of the week is it? ") Holiday = "Sunday" Holiday = "Saturday" if Dayofweek == "Sunday": print('You should stay in bed snoozing.') if Dayofweek == "Saturday": print('You should stay in bed snoozing.') if Dayofweek == "Monday": Holiday = input("Is it a holiday? ") if Dayofweek == "Tuesday": Holiday = input("Is it a holiday? ") if Dayofweek == "Wednesday": Holiday = input("Is it a holiday? ") if Dayofweek == "Thursday": Holiday = input("Is it a holiday? ") if Dayofweek == "Friday": Holiday = input("Is it a holiday? ") if Holiday == "Yes": print("You should stay in bed snoozing.") if Holiday == "No": print("You should be getting to work.")