use std::io::Read; fn main() { let mut input = String::new(); std::io::stdin().read_to_string(&mut input).unwrap(); let mut input = input.split_whitespace(); let _t: usize = input.next().unwrap().parse().unwrap(); let s: usize = input.next().unwrap().parse().unwrap(); let d: usize = input.next().unwrap().parse().unwrap(); println!("{:.15}", d as f64 / s as f64); }