class Pos{ int x; int y; int z; Pos(int x, int y, int z) { this.x = x; this.y = y; this.z = z; } }