1{
2#include <stdio.h>
3}
4A: ID ( ',' ID { printf( "moreIDs\n" ); } )* ';' ;
5ID: "[a-z]+" { printf( "ID\n" ); } ;
6