#include <iostream>using namespace std;int main(int argc, char** argv){int a;cin>>a;a=a%2;if(a==1){cout<<"Odd";}else{cout<<"Even";}}