A,B = map(int, input().split()) C = map(str, input()) # 参考: リストを読む際はlist()で覆ってやらないといけない # L = list(map(int, input().split())) #2行目を読み込む #S = input() # 標準出力に書き出す。 # カンマで区切るとスペースで分割してくれるので楽です。 print(A + B + " " + C)