#include<stdio.h> int main() { char p1[40],p2[10],*q=p1,*w=p2; gets(p1); gets(p2); while(*q)q++; if(*w){ *q++=*w++; *q='\0';} printf("%s\n",p1); return 0; }