Competitions
Week 2 Conditionals Part 2
Water and Ice
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 data
One integer value t (-10^9
≤ t ≤ -10^9
).
Output data
Print "Water" if t is positive and "Ice" if t is zero or negative.
Examples
Input example #1
3
Output example #1
Water
Input example #2
-6
Output example #2
Ice