#include <stdio.h> #include <math.h> main() {float a,b,c,d,l; scanf("%f,%f,%f,%f",&a,&b,&c,&d); l=sqrt((a-b)*(a-b)+(c-d)+(c-d)); printf("%f",l); }