#include "bits/stdc++.h" using namespace std; typedef long long ll; typedef pair P; typedef pair Pll; typedef pair PP; #define rep(i,a,n) for(int i = a;i < n;i++) #define LINF (ll)1e17 #define INF 1e9 #define MOD 1e9+7 #define sMOD 1e5 #define fs first #define sc second ll gcd(ll a,ll b){ if(!b) return a; return gcd(b,a%b); } signed main(){ int a,b; string s; cin >> a >> b >> s; cout << a+b << " " << s << endl; return 0; }