day = input("what day of the week is it? ") holiday = input("is it holiday? ") if holiday == "yes" : print("then you should be sleeping!!") elif day == "sat" : print("then go to slep!") elif day == "sun" : print("then go to slep!") else : print("then go to school!!") #finished