Day = input( "What day of the week is it? " ) Holiday = input( "Is it a holiday or a weekend? " ) if Holiday == "holiday": print( "You should stay in the bed snoozing! " ) if Holiday == "weekend": print( "You should stay in the bed snoozing! " ) else: print( "Better get up soon for work! " )