import static java.lang.Math.sqrt;

public class Util {
    public static double getDistance(int x1, int y1, int x2, int y2) {
        //write your code here
        double a = (x2-x1)*(x2-x1)+(y2-y1)*(y2-y1);
        Math.sqrt(a);
        return a;
    }

    public static void main(String[] args) {

    }
}