#46143: c++ :)


yp11351205@yphs.tp.edu.tw (809-36黃泊霖)


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