def main(): A, B = map(int, input().split()) S = input() print(A + B, S) if __name__ == "__main__": main()