%{
#include <stdio.h>
%}
%%
if {printf("%s is a keyword\n", yytext);}
else {printf("%s is a keyword\n", yytext);}
printf {printf("%s is a keyword\n", yytext);}
[0-9]+ {printf("%s is a number\n", yytext);}
[a-zA-Z]+ {printf("%s is a word\n", yytext);}
.|\n {ECHO;}
%%
int main() {
printf("\nEnter the string: ");
yylex();
return 0;
}
int yywrap() {
return 1;
}
JXsKI2luY2x1ZGUgPHN0ZGlvLmg+CiV9CgolJQppZiAgICAgICB7cHJpbnRmKCIlcyBpcyBhIGtleXdvcmRcbiIsIHl5dGV4dCk7fQplbHNlICAgICB7cHJpbnRmKCIlcyBpcyBhIGtleXdvcmRcbiIsIHl5dGV4dCk7fQpwcmludGYgICB7cHJpbnRmKCIlcyBpcyBhIGtleXdvcmRcbiIsIHl5dGV4dCk7fQpbMC05XSsgICB7cHJpbnRmKCIlcyBpcyBhIG51bWJlclxuIiwgeXl0ZXh0KTt9ClthLXpBLVpdKyB7cHJpbnRmKCIlcyBpcyBhIHdvcmRcbiIsIHl5dGV4dCk7fQoufFxuICAgICB7RUNITzt9CiUlCgppbnQgbWFpbigpIHsKICBwcmludGYoIlxuRW50ZXIgdGhlIHN0cmluZzogIik7CiAgeXlsZXgoKTsKICByZXR1cm4gMDsKfQoKaW50IHl5d3JhcCgpIHsKICByZXR1cm4gMTsKfQo=