Concept Flow - Enum usage
Define enum with names and values
Declare variable of enum type
Assign enum value to variable
Use variable in code (e.g., print or condition)
Program runs with enum values as integers
This flow shows how you define an enum, assign its values to variables, and use them in your program.