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 x1: f64 = itr.next().unwrap().parse().unwrap(); let y1: f64 = itr.next().unwrap().parse().unwrap(); let x2: f64 = itr.next().unwrap().parse::().unwrap() * -1.0; let y2: f64 = itr.next().unwrap().parse().unwrap(); // let a = (y2 - y1) / (x2 - x1); let b = y1 - a * x1; println!("{:.10}", b); }