%{
#include <stdio.h>
%}

%%
.    { printf("Hello World\n"); BEGIN(0); exit(0); }
%%

int main() {
    yylex();
    return 0;
}