import java.lang.Object; public class Position { public int i; public int j; public Position(int _i, int _j) { i = _i; j = _j; } }