def main(): A, B = map(int, input().split()) S = input() ab = A + B print(ab, S) main()