fun main() { val (b, c) = readLine()!!.split(" ").map { it.toInt() } val result = if (b == c) "Yes" else "No" println(result) }