%{
#include <stdio.h>
%}
%%
"/*".*"*/" { printf("Multiline comment: %s\n", yytext); }
"//".* { printf("Single-line comment: %s\n", yytext); }
.|\n { /* Ignore other characters */ }
%%
int main() {
yylex();
return 0;
}
int yywrap() {
return 1;
}
JXsKI2luY2x1ZGUgPHN0ZGlvLmg+CiV9CgolJQoKIi8qIi4qIiovIiAgICAgIHsgcHJpbnRmKCJNdWx0aWxpbmUgY29tbWVudDogJXNcbiIsIHl5dGV4dCk7IH0KIi8vIi4qICAgICAgICAgICB7IHByaW50ZigiU2luZ2xlLWxpbmUgY29tbWVudDogJXNcbiIsIHl5dGV4dCk7IH0KLnxcbiAgICAgICAgICAgICB7IC8qIElnbm9yZSBvdGhlciBjaGFyYWN0ZXJzICovIH0KCiUlCgppbnQgbWFpbigpIHsKICAgIHl5bGV4KCk7CiAgICByZXR1cm4gMDsKfQoKaW50IHl5d3JhcCgpIHsKICAgIHJldHVybiAxOwp9Cg==