#include int main(){ int a,b; char c; scanf("%d%d",&a,&b); scanf("%s",&c); printf("%d\n",(a+b)); printf("%s\n",&c); return 0; }