#include int main(int argc, char* argv[]){ int a, b; char str[256]; scanf("%d %d",&a,&b); scanf("%s", str); printf("%d %s", a+b, str); }