
public class HitAndRun extends Strategy {
  protected int firstMove () {
    return 1;
  }
  protected int secondMove (int myLastPlay, int otherLastPlay, int currentScore) {
    return 2;
  }
}

