using namespace std; int main() { double a,b,c,d; cin>>a>>b; cin>>c>>d; printf(“%.4lf”,sqrt((a-c)(a-c)+(b-d)(b-d))); return 0; }