#include int main() { std::ios::sync_with_stdio(false); std::cin.tie(nullptr); long double a, b, c; std::cin >> a >> b >> c; auto S = [&]() -> long double { long double s = (a + b + c) / 2; return sqrt(s * (s - a) * (s - b) * (s - c)); }; std::cout << std::fixed << std::setprecision(16) << 2 * S() / (a + b + c) << '\n'; }