def Add(x, y): return x+y while True: In = input() if In: exec(In) else: break