def main(): a, b = [int(_) for _ in input().split()] s = input() print(a+b, s) main()