#include<iostream.h> int main() { int n,m; cin>>n; m=n%2; if(m==1) { cout<<"Odd number"<<endl; } if(m==0) { cout<<"Even number"<<endl; } return 0; }