#include <stdio.h>
int main() {
    int n;
    while(scanf("%d",&n)!=EOF)
    {
    printf((n%2==0)?"Even\n":"Odd\n");
    }
    return 0;
}