#11836: cpp answer


s510630 (11616)

學校 : 國立中央大學附屬中壢高級中學
編號 : 64364
來源 : [27.247.195.198]
最後登入時間 :
2017-08-12 10:16:01

#include <iostream>
using namespace std;

int main(){
int i;
while (cin>>i){
if(i%2==1){
cout<<"Odd"<<endl;
}
else{
cout<<"Even"<<endl;
}
}


}