/*
#include <stdio.h>
#include <string.h>
int main()
{
char s[201]={};
int i;
gets(s);
for(i=0;s[i]!=0;i++){
if(s[i]=='x'){
printf("a");
}
else if(s[i]=='y'){
printf("b");
}
else if(s[i]=='z'){
printf("c");
}
else if('a'<=s[i]&&s[i]<='z'){
printf("%c",s[i]+3);
}
else
printf("%c",s[i]);
}
return 0;
}
*/
#include<stdio.h>
#include<string.h>
int main()
{
char s[13]={'A','B','C','D','E','F','G','H','I','J','K','L'};
int i,x,y,z;
scanf("%d",x);
y=(x+6)%10;
z=(x+8)%12;
printf("%c%d,s[z],y);
return 0;
}