use std::io::*; fn main() { let mut s = String::new(); std::io::stdin().read_to_string(&mut s).ok(); let mut itr = s.trim().split_whitespace(); let vl: f64 = itr.next().unwrap().parse().unwrap(); let vr: f64 = itr.next().unwrap().parse().unwrap(); let d: f64 = itr.next().unwrap().parse().unwrap(); let w: f64 = itr.next().unwrap().parse().unwrap(); println!("{}", d / (vl + vr) * w); }