#include using namespace std; int main() { int A; int B; char S[ 20 ]; cin >> A; cin >> B; cin >> S; cout << A + B << " " << S << endl; return 0; }