#include <stdio.h>
main()
{
   char d;
   d = 76;
   printf("%c", d);
   d = 'L';
   printf(" %c %d", d, d);
}
