Hide
Problem A
Even or Odd
Accepted submissions to this problem will be granted a score of 100
Write a program that reads an integer
Input
Input consists of one line containing one integer
Output
Output consists of one line, whether
Sample Input 1 | Sample Output 1 |
---|---|
0 |
The number is even. |
Sample Input 2 | Sample Output 2 |
---|---|
1 |
The number is odd. |
Sample Input 3 | Sample Output 3 |
---|---|
2 |
The number is even. |
Sample Input 4 | Sample Output 4 |
---|---|
1548 |
The number is even. |
Sample Input 5 | Sample Output 5 |
---|---|
-153 |
The number is odd. |