#include int main(void){ int a,b; char s[10]; std::cin >> a; std::cin >> b; std::cin >> s; std::cout << a+b << ' ' << s; }