eolymp
bolt
Try our new interface for solving problems
Problems

Water and Ice

Water and Ice

Time limit 1 second
Memory limit 128 MiB

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^9t-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