提交时间:2025-12-19 16:51:26
运行 ID: 76732
using namespace std; int main() { int n; cin>>n; if(n%2==1) { cout<<"odd"; } else { cout<<"even"; } return 0; }