#include <bits/stdc++.h> using namespace std; int main(){ ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n, tmp; cin>>n; for(int i = 1; i <= n; i ++){ cin>>tmp; if(tmp % 2 == 0) cout<<"even"<<endl; else cout<<"odd"<<endl; } return 0; }
解决壶关