#include <cstdio> int main(){ int n; scanf("%d",&n); if(n % 2 == 1) printf("odd"); else printf("even"); return 0; }