week = input( "What part of the week is it?" ) 

if week == "weekend" :
    print( "You should stay in bed" )

elif week == "holiday" :
    print( "You really should stay in bed" )

elif week == "main week" :
    print( "It's time for school" )