#include int main() { int A=0,B=0; char S[10]; scanf("%d", &A); scanf("%d", &B); scanf("%s", S); printf("%d", A+B); printf("%s", S); return 0; }