Odd or even

Report a typo

Write a program that reads a number and prints EVEN if it is even. Otherwise, the program should print ODD.

Sample Input 1:

5

Sample Output 1:

ODD

Sample Input 2:

-5

Sample Output 2:

ODD
Write a program in Kotlin
fun main() {
// write your code here
}
___

Create a free account to access the full topic