// editor2
#include<stdio.h>
int main()
{
    char b;
    printf("The character is: %c\n");
    scanf("%c",&b);
    return 0;
}