#include <stdio.h>
enum Level {
LOW,
MEDIUM,
HIGH
};
int main() {
// 创建枚举变量并赋值
enum Level myVar = MEDIUM;
// 打印枚举变量
printf("%d", myVar);
return 0;
}