#include <stdio.h>

int main()
{
char c1;
scanf("%c\n", &c1);
if(c1 == 'k')
printf("참");
return 0;
}