2025-03-27 00:44:25 +08:00

21 lines
372 B
C

#include <stdio.h>
#define bool int
#define true 1
#define false 0
int main() {
char c;
bool is_odd;
while ((c = getchar()) != '\n') {
if (c == '1') {
is_odd = true;
} else {
is_odd = false;
}
}
printf("%s", is_odd ? "ODD" : "EVEN");
if (0) { /* Fake array */
int a[1];
}
return 0;
}