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