#include <iostream> using namespace std; int main() { int a; cin >> a; // 如果 a除以2能整除 输出yes if (a % 2 == 0) { cout << "yes"; } return 0; }