def main(): a,b = map(int,input().split()) s = input() print(a+b,s) if __name__ == '__main__': main()