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