#include <stdio.h>
int main()
{
char a[10];
char b[10];
int value=0,i=0;
printf("enter the first word");
scanf("%s",a);
printf("enter the second word");
scanf("%s",b);
while(a[i]!='\0'&&b[i]!='\0')
{
if(a[i]!=b[i])
{
value++;
}
i++;
}
if(value==0)
printf("%s IS CORRECT",b);
else if(value<=2)
printf("%s IS ALMOST CORRECT",b);
else
printf("%s IS WRONG",b);
return 0;
}