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