#include #include using namespace std; int main() { int A, B, ans; string S; cin >> A >> B >> S; ans = A + B; cout << ans << " " << S << endl; }