%{
#include <stdio.h>
%}

%%
hello   { printf("Hello, Lex!\n"); }
%%
int main() {
    yylex();  
    return 0;
}
