let inp = readLine()!.split(separator: " ").map{Int($0)!} let A = inp[0] let B = inp[1] print(A <= B ? "Yes" : "No")