答案仅供参考

austin2010 2023-01-13 19:30:58 8 返回题目

#include <bits/stdc++.h>

using namespace std;

int main() {

int n;

cin >> n;

if (n % 2 == 0 || n > 50) {

    cout << "yes";

} else

    cout << "no";

return 0;

}

{{ vote && vote.total.up }}