#include int main() { int i = 4; if (i % 2 == 0) { printf("even\n"); } else { printf("odd\n"); } return 0; }