fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. int i;
  6.  
  7. scanf("%d",&i);
  8.  
  9. if(i % 2 == 0){
  10. printf("Even");
  11. }else{
  12. printf("Odd");
  13. }
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 5256KB
stdin
6
stdout
Even