public class TowerOfHanoi {
  public static void main(String[] args) {
    // get initial game with 4 discs
    Game g = new Game(3);
    
    // play
    g.play();
  }
}