day = input('What day of the week is it? (mon,tue,wens,thurs,fri,sat,sun)') if day == 'sat' : print('You should stay in bed snoozing!') elif day == 'sun' : print('You should stay in bed snoozing!') else : holi = input('is it a holiday? (yes/no)') if holi == 'yes' : print('You should stay in bed snoozing!') else : print('Get up already!')