let v = readLine()!.split(separator: " ").map { Int($0)! } let (a, b) = (v.min()!, v.max()!) print(b > a * 2 ? "No" : "Yes")