package yukicoder fun main() { val x = readLine()!!.toInt() val ans = when (x) { 10, 4, 0 -> "Yes" else -> "No" } println(ans) }