提交时间:2026-03-13 15:06:03

运行 ID: 85514

#include<bits/stdc++.h> using namespace std; int main(){ int m; cin>>m; if(m%2==0) cout<<"even"; else cout<<"odd"; return 0; }