#include <ctype.h>
# include <stdio.h>

int fuzzyStrcmp(char s[], char t[]){
    int i = 0;

    while(s[i] != '\0' && t[i] != '\0'){
        // 小文字に変換して比較
        if(tolower(s[i]) != tolower(t[i])){
            return 0; // 違う
        }
        i++;
    }

    // 長さが違う場合
    if(s[i] != t[i]){
        return 0;
    }

    return 1; // 同じ
}

//メイン関数は書き換えなくてできます 
int main(){
    int ans;
    char s[100];
    char t[100];
    scanf("%s %s",s,t);
    printf("%s = %s -> ",s,t);
    ans = fuzzyStrcmp(s,t);
    printf("%d\n",ans);
    return 0;
}
