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