一:
#include<stdio.h>
#include<ctype.h>
#include<string.h>
int main(){
int a=0;
char c[100]={0};
char d[100]={0};
scanf("%s",c);
scanf("%s",d);
if(strlen(c)!=strlen(d)){
a=1;
}
else {
if(strcmp(c,d)==0)a=2;
else{
int len1=strlen(c);
int len2=strlen(d);
for(int i=0;i<len1;i++)if(islower(c[i]))c[i]=toupper(c[i]);
for(int i=0;i<len2;i++)if(islower(d[i]))d[i]=toupper(d[i]);
if(strcmp(c,d)==0)a=3;
else a=4;
}