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

