
public class Punto {
	int x,y;
	
	Punto (int x, int y) {
		this.x = x;
		this.y = y;
	}
}
