fun main(args: Array) { val (a,b) = readLine()!!.split(" ").map { it.toInt() } println(if(a <= b) "Yes" else "No") }