while True: 1 = input("1=: A) B) [A/B]? : ") if 1 == "A": print("A") elif 1 == "B": print("B") else: print("Done!") break