#include<bits/stdc++.h>
using namespace std;
int judge1(char *s1,char *s2){
if(strlen(s1)!=strlen(s2)){
return 1;
}
else{
return 0;
}
}
int judge2(char *s1,char *s2){
int i=0;
if(strlen(s1)==strlen(s2)){
while(s1[i]!='\0'){
if(s1[i]==s2[i]){
i++;
if(s1[i]=='\0'){
return 2;
break;
}
}
else{
return 0;
}
}
}
else{
return 0;
}
}
int judge3(char *s1,char *s2){
int i=0;
if(strlen(s1)==strlen(s2)){
while(s1[i]!='\0'){
if(s1[i]==s2[i]||(s1[i]+32)==s