{"raw_statement":[{"iden":"problem statement","content":"You are given positive integers $A$ and $B$.  \nLet us calculate $A+B$ (in decimal). If it does not involve a carry, print `Easy`; if it does, print `Hard`."},{"iden":"constraints","content":"*   $A$ and $B$ are integers.\n*   $1 \\le A,B \\le 10^{18}$"},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$A$ $B$"},{"iden":"sample input 1","content":"229 390"},{"iden":"sample output 1","content":"Hard\n\nWhen calculating $229+390$, we have a carry from the tens digit to the hundreds digit, so the answer is `Hard`."},{"iden":"sample input 2","content":"123456789 9876543210"},{"iden":"sample output 2","content":"Easy\n\nWe do not have a carry here; the answer is `Easy`.  \nNote that the input may not fit into a $32$\\-bit integer."}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}