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