Water and Ice
Execution time limit is 1 second
Runtime memory usage limit is 128 megabytes
The pail filled with water was put outside the house. The temperature of the air is t degrees. Print "Water" if t is positive and "Ice" otherwise.
Input
One integer value t (-10^9
≤ t ≤ -10^9
).
Output
Print "Water" if t is positive and "Ice" if t is zero or negative.
Examples
Input #1
Answer #1
Input #2
Answer #2
Submissions 21K
Acceptance rate 55%