#abc229b. B - Hard Calculation

B - Hard Calculation

Score : 200200 points

问题描述

给定两个正整数 AABB

让我们计算 A+BA+B(以十进制表示)。如果不产生进位,则输出 Easy;如果产生进位,则输出 Hard

以上为通义千问 qwen-max 翻译,仅供参考。

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.
  • 1A,B10181 \le A,B \le 10^{18}

Input

Input is given from Standard Input in the following format:

AA BB

Output

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

Sample Input 1

229 390

Sample Output 1

Hard

When calculating 229+390229+390, we have a carry from the tens digit to the hundreds digit, so the answer is Hard.

Sample Input 2

123456789 9876543210

Sample Output 2

Easy

We do not have a carry here; the answer is Easy.
Note that the input may not fit into a 3232-bit integer.

update @ 2024/3/10 10:00:53