day = input("What day of the week is it? ") holiday = input("Is it a holiday ") if (holiday) == "no": if (day) == "monday": print(" You should wake up and got to school") if (day) == "tuesday": print(" You should wake up and get to school") if (day) == "wednesday": print(" You should wake up and get to school") if (day) == "thursday": print(" You should wake up and get to school") if (day) == "friday": print(" You should wake up and get to school") if (day) == "saturday": print(" You should sleep in") if (day) == "sunday": print(" You should sleep in") if (holiday) == "yes": if (day) == "monday": print(" You should sleep in") if (day) == "tuesday": print(" You should sleep in") if (day) == "wednesday": print(" You should sleep in") if (day) == "thursday": print(" You should sleep in") if (day) == "friday": print(" You should sleep in") if (day) == "saturday": print(" You should sleep in") if (day) == "sunday": print(" You should sleep in")