#include #include using namespace std; static void setup() { cin.tie(0); ios::sync_with_stdio(false); } int main(int argc, char **argv) { setup(); int a, b; string s; cin >> a >> b >> s; cout << a + b << ' ' << s; return 0; }