#include using namespace std; int main() { int a, b; scanf("%d %d", &a, &b); char s[10]; scanf("%10s", s); printf("%d %s\n", a + b, s); }