#include <stdio.h>
int fuzzyStrcmp(char s[], char t[]){
	int i;
	for(i=0;s[i]!='\0'; i++){
		if('a'<=s[i]&&s[i]<='z'){
			s[i]=s[i]-32;
		}
	}
	for(i=0;t[i]!='\0'; i++){
		if('a'<=t[i]&&t[i]<='z'){
			t[i]=t[i]-32;
		}
	}
	for(i=0; s[i]==t[i]; i++){
		if(s[i]!='\0'){
			return 1;
		}
	}
	return 0;
}
int main(void) {
int ans;
char s[100];
char t[100];
scanf("%s %s", s,t);
printf("%s = %s -> ",s,t);
ans=fuzzyStrcmp(s,t);
printf("%d", ans);
	return 0;
}
