%%

[a-z]      { printf("%c is lowercase\n", yytext[0]); }
[A-Z]      { printf("%c is uppercase\n", yytext[0]); }


%%

int main() {
    yylex();      // Lexical analyzer function call
    return 0;
}
