#include #include int main() { char str1[256]; char str2[]="ham"; scanf("%s",str1); strcat(str1,str2); printf("%s\n",str1); return 0; }