#include <stdio.h>
int main()
{
	enum month {JAN,FEB,MAR,APR,MAY,JUN,JUL,AUG,SEP,OCT,NOV,DEC};
	enum month i;
	for(i=JAN;i<=DEC;i++)
		printf("\n%d",i);
	return 0;
}