import java.lang.*;


public class Util {
    public static double getDistance(int x1, int y1, int x2, int y2) {

        double x = (x2-x1)*(x2-x1) + (y2-y1)*(y2-y1);
        double distance = double Math.sqrt(double x);
        return  distance;
не могу разобраться почему не работает код, компилятор ругается на Math - class' expected: .