#include <stdio.h>
#include<string.h>
int main( )
{
int n,m;
char str[201];
while(~scanf("%s",str))
{
n=strlen(str);
if(n==1||n==2)
printf("zz happy!\n");
else
{
for(m=0;m<n/2;m++)
{
if(str[m] != str[n-m-2])
break;
}
if(str[m]==str[n-m-2])
printf("zz happy!\n");
else
{
for(m=1;m<=n/2;++m)
{
if(str[m]!=str[n-m])
break;
}
if(str[m]==str[n-m])
printf("zz happy!\n");
else
printf("zz cry\n");
}
}
}
return 0;
}