#include <iostream> using namespace std; int main() { int i; cin >> i; if((i%2)>0) cout<<"Odd"; else cout<<"Even"; }