#include enum(int) IntEnum { zero, one, thousand = 1000, thousand_one, two_thousand = 2000, two_thousand_one, two_thousand_two }; int main() { printf("0=%d\n", zero); printf("1=%d\n", one); printf("1000=%d\n", thousand); printf("1001=%d\n", thousand_one); printf("2000=%d\n", two_thousand); printf("2001=%d\n", two_thousand_one); printf("2002=%d\n", two_thousand_two); return 0; }