function solve() a, b = readline() |> split |> x->parse.(Int, x) if a > 2b || b > 2a println("No") else println("Yes") end end solve()