public class Point1 {
	private int x=0;
	private int y=0;
	public void stepNorthEast() {
		x++;
		y++;
	}
	public boolean isNorthEast() {
		return x==y;
	}
}