use proconio::input; fn main() { input! { a: u32, b: u32, } if a > b * 2 || b > a * 2 { println!("No"); } else { println!("Yes"); } }