use proconio::input; fn main() { input! { a: usize, b: usize, } let ans = if a*2 < b || b*2 < a { "No" } else { "Yes" }; println!("{ans}"); }