#include using namespace std; int main() { int n; scanf("%d", &n); if (n % 2 == 0)puts("odd"); else puts("even"); }