#include <cmath>
#include <iostream>
int main()
{
float x1, x2, y1, y2;
std::cin >> x1 >> y1;
std::cin >> x2 >> y2;
std::cout << "Расстояние = " << sqrt(pow(x2 - x1, 2) + pow(y2 - y1, 2)) << std::endl;
}
#include <cmath>
#include <iostream>
int main()
{
float x1, x2, y1, y2;
std::cin >> x1 >> y1;
std::cin >> x2 >> y2;
std::cout << "Расстояние = " << sqrt(pow(x2 - x1, 2) + pow(y2 - y1, 2)) << std::endl;
}