#include <stdio.h> #include <math.h> int main() { double x1,y1,x2,y2; scanf("%lf %lf %lf %lf",&x1,&y1,&x2,&y2); printf("%lf\n",hypot(x1-x2,y1-y2)); }