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