fun main(args: Array) { val tmp = listOf(0,2,5) val x = readLine()!!.toInt() println(if(tmp.any { it*2 == x }) "Yes" else "No") }