#include <iostream>
#include <string>
using namespace std;
int mystrcmp(const char * str1,const char * str2)
{
int i=0;
while(1)
{
if(str1[i]==' ' &&str2[i]!=' ')
{
return -1;
}
else if(str1[i]!=' ' &&str2[i] == ' ')
{
return 1;
}
else if(str1[i]==' ' &&str2[i] == ' ')
{
return 0;
}
if(str1[i]<str2[i])
{
return -1;
}
else if(str1[i]>str2[i])
{
return 1;
}
i++;
}
}
int main()
{
string str1;
string str2;
while(1)
{
getline(cin,str1);
getline(cin,str2);
cout<<"str1="<<str1<<endl;
cout<<"str2="<<str2<<endl;
cout<<mystrcmp(str1.c_str(),str2.c_str())<<endl;
}
}