%{
  #include<stdio.h>
  
%}
%%
[\t]+ ;
#.* { printf("\n%s is comment",yytext);}
\n {ECHO;}
%%
int main(){
  yylex();
  
}
int yywrap(){
  return 1;
}