use proconio::input; fn main() { input! { a: f64, b: f64, c: f64, } let s = (a + b + c) / 2.0; let radius = ((s - a) * (s - b) * (s - c) / s).sqrt(); println!("{radius}"); }