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