#include<string.h> /*我写的一个strcpy的涵数*/
#include<stdio.h>
main()
{int i;
i=0;
char string[5];
char str[2][5];
gets(str[0]);
gets(str[1]);
do
{if(str[0][i]!=str[1][i])
{printf("%d",str[0][i]-str[1][i]);
break;}
else i++;
} while(i<4);
if(str[0][4]==str[1][4])
printf("0");
else printf("%d",str[0][i]-str[1][i]);
getch();
}