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