#include <stdio.h> enum Color{ red, yellow, blue }; int main(){ printf("%d\n",red); printf("%d\n",yellow); printf("%d\n",blue); return 0; }