#include #include #include #include #include #include #include using namespace std; typedef long long LL; int main(){ LL A, B; string S; cin >> A >> B >> S; cout << (A+B) << " " << S << endl; return 0; }