char str1[300],str2[300],*s=str1,*t=str2;
gets(s);gets(t);
while((*s)&&(*t)&&(*t==*s))
{ t++;
s++;
}
printf(“%d\n”,*s-*t);