float sqr(float x) { return x * x; } static class Point{ float x, y; Point(float x, float y){ this.x = x; this.y = y; } }