use std::io::*; fn main() { let mut s: String = String::new(); std::io::stdin().read_to_string(&mut s).ok(); let mut itr = s.trim().split_whitespace(); let mut a: f64 = itr.next().unwrap().parse().unwrap(); let mut b: f64 = itr.next().unwrap().parse().unwrap(); let x: f64 = itr.next().unwrap().parse().unwrap(); let y: f64 = itr.next().unwrap().parse().unwrap(); if a < b { b /= a; if x * b <= y { println!("{:.10}", x + x * b); } else { println!("{:.10}", y + y / b); } } else { a /= b; if y * a <= x { println!("{:.10}", y + y * a); } else { println!("{:.10}", x + x / a); } } }