← Back to List
30214번: An Easy-Peasy Problem ↗
Solutions
Python 3
66 B | 66 chars
a, b = map(int, input().split()) print("E" if a * 2 >= b else "H")