%{
#include<stdio.h>
int upper = 0;
int lower=0;
%}
/* Rules Section*/
%%
[A-Z] {printf("upper cse\t");upper++;}
[a-z] {printf("lower case\t"); lower++;}
%%
int yywrap()
return 0;
main()
printf("enter a string\n");
yylex();
printf("uppercase=%d and lowercase=%d",upper,lower);