#include<stdio.h>
int main()
{
   char ch;
   ch='A'
   printf("The character is: %c",ch);
   scanf("%c",&ch);
   return 0;
}