contents = []while True : try: line = input() a = line.pop(0) b = line.pop(1) print(int(a)+int(b)) except EOFError: break