class Main { enum Level { LOW, MEDIUM, HIGH } public static void main(String[] args) { Level myVar = Level.MEDIUM; Level myVar1 = Level.LOW; System.out.println(myVar); System.out.println(myVar1); } }