#include <stdio.h>
 
int main()
{
char r = 6;
int a = 6;
 
printf("%d %s %c \n",r,&r,r);
printf("%d %s %c \n",a,&a,a);
 
return 0;
} 