import sys

for line in sys.stdin:
    a = line.split()
    print(int(a[0]) + int(a[1]))

offer_list = ["Allen", "Tom"]
for i in offer_list:
    print(
        i
        + ", you have passed our interview and will soon become a member of our company."
    )
offer_list = ["Allen", "Andy"]
for j in offer_list:
    print(j + ", welcome to join us!")