#include <iostream>
using namespace std;
int main(){ int c; cin >> c;
這裡先算偶數會好一點 if (c%2 == 0) cout << "Even" << endl; else cout << "Odd" << endl; return 0;}