#conditional statement practise bread = input("what is your favorate bread out of focacia and sour dough ") if bread == "focacia": print("you have good taste") elif bread == "sour dough": print("good enough") else: print("wrong answer") print("the programe has ended")