#include <stdio.h> int main() { int a; scanf("%d",&a); if (a%2==1) { printf("odd"); } if(a%2!=1) { printf("even"); } return 0; }