#include using namespace std; int main() { int a, b; char str[10]; cin >> a >> b; cin >> str; cout << a + b << " " << str; return 0; }