Problem2182--Hard Calculation(abc229_b)

2182: Hard Calculation(abc229_b)

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

Problem Statement

You are given positive integers AA and BB.
Let us calculate A+BA+B (in decimal). If it does not involve a carry, print Easy; if it does, print Hard.

Constraints

  • AA and BB are integers.
  • 1 \le A,B \le 10^{18}1A,B10**18 (即10的18次方)

Input

Input is given from Standard Input in the following format:
AABB

Output

If the calculation does not involve a carry, print Easy; if it does, print Hard.

Sample Input Copy

229 390

Sample Output Copy

Hard

Source/Category