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