public class Move
{
  private int delx, dely;
  
  public class(int dx, int dy)
  {
    this.delx = dx;
    this.dely = dy;
  }
}
