use std::io::Read; fn main() { let mut np = String::new(); std::io::stdin().read_to_string(&mut np).ok(); let mut itr = np.trim().split_whitespace(); let n: i32 = itr.next().unwrap().parse().unwrap(); let p: f64 = itr.next().unwrap().parse().unwrap(); let ans = if n >= 200 { 1.to_string() } else { (1. - (1. - p).powi(n)).to_string() }; println!("{}", ans); }