//This file generated automatically from the MARIUS LP system, please do not edit.

public class Posicion {

  private int _x,_y;
  public Posicion(int x,int y) { _x = x; _y=y;}
  public int getX() { return _x; }
  public int getY() { return _y; }
  public Posicion trasladar(Posicion p){
      new Posicion(this._x+p.getX() , this._y+p.getY());
  }

} //End of class Posicion
