package p;

public class ArrayList {
	public int x;
	public int y;
	public ArrayList(int x, int y) {
		this.x = x;
		this.y = y;
	}
}