#55537: C++解法


yp11550392@yphs.tp.edu.tw (ZEROJUDGE)


#include <iostream>

using namespace std;

int main() { 
    int number;
    cin >> number;

    if (number % 2 != 0) {
        cout << "Odd";
    }
    else {
        cout << "Even";
    }
  
    return 0;
}

 

//嚴禁抄襲!