#include
#include
#define MAX 200
void main()
{
\x09char a[MAX],b[MAX];
\x09scanf("%s %s",a,b);
\x09int l1 = strlen( a );
\x09int l2 = strlen( b );
\x09if( l1 > l2 )
\x09\x09printf("a>b and the number is %d\n",l1-l2);
\x09else if( l1 < l2 )
\x09\x09printf("a
