while True: x = input() if x == 1: print "Option One" elif x == 2: print "Option Two" else: print "Terminating" break