提交时间:2024-09-22 21:23:09
运行 ID: 51584
#include<bits/stdc++.h> using namespace std; int main() { int h; cin >> h; if(h%2==1){ cout<<"odd"; }else{ cout<<"even"; } return 0; }