import com.harium.util.math.geometry.Point;
public class Main {
public static void main(String[] args) {
Point point1 = new Point(2, 3);
Point point2 = new Point(5, 1);
double distance = point1.distance(point2);
System.out.println("The distance between point1 and point2 is: " + distance);
}
}