import sys for line in sys.stdin: line = line.strip() if not line: continue a, b = line.split() a = int(a) b = int(b) print(a + b)