// special character of the string
#include<stdio.h>
int main(){
    char input;
    printf("please enter your character :\n");
    scanf("%c",&input);
    if ('a'<=input<='z')
        printf("there is no specail character :",input);
    else
        printf(" the valu error");
    return 0;
    
    
    
    
}