#include <iostream> #include <bits/stdc++.h> using namespace std; int main() { int inp; cin>>inp; if(inp % 2 == 0) { cout<<" Even" <<endl; } else { cout<<"Odd"<<endl; } }