
public class Moth extends Strategy {
  protected int secondMove (int myLastPlay, int otherLastPlay, int currentScore) {
    return 2*otherLastPlay;
  }
}

