1 public class Game implements GameConstants {2 3 public static void main(String [] args) {4 System.out.println("Playing from: "+LOW+" to "+HIGH);5 }6 }7 8 interface GameConstants {9 10 public static int HIGH = 100;11 public static int LOW = 1;12 13 }14 15