%{
#include <stdio.h>
int positiveCount = 0;
int negativeCount = 0;
%}
%%
[1-9][0-9]*|0 { positiveCount++; }
-[1-9][0-9]* { negativeCount++; }
\n|. ; /* Ignore other characters and newlines */
%%
int main() {
yylex();
printf("Positive numbers: %d\n", positiveCount);
printf("Negative numbers: %d\n", negativeCount);
return 0;
}
int yywrap() {
return 1;
}
JXsKI2luY2x1ZGUgPHN0ZGlvLmg+CgppbnQgcG9zaXRpdmVDb3VudCA9IDA7CmludCBuZWdhdGl2ZUNvdW50ID0gMDsKJX0KCiUlCgpbMS05XVswLTldKnwwIHsgcG9zaXRpdmVDb3VudCsrOyB9Ci1bMS05XVswLTldKiB7IG5lZ2F0aXZlQ291bnQrKzsgfQpcbnwuIDsgLyogSWdub3JlIG90aGVyIGNoYXJhY3RlcnMgYW5kIG5ld2xpbmVzICovCgolJQoKaW50IG1haW4oKSB7CiAgICB5eWxleCgpOwogICAgcHJpbnRmKCJQb3NpdGl2ZSBudW1iZXJzOiAlZFxuIiwgcG9zaXRpdmVDb3VudCk7CiAgICBwcmludGYoIk5lZ2F0aXZlIG51bWJlcnM6ICVkXG4iLCBuZWdhdGl2ZUNvdW50KTsKICAgIHJldHVybiAwOwp9CgppbnQgeXl3cmFwKCkgewogICAgcmV0dXJuIDE7Cn0=