AT_abc459_a [ABC459A] Hell, World!
Description
You are given an integer $ X $ between $ 1 $ and $ 10 $ , inclusive.
Output the string obtained by deleting only the $ X $ -th character from the string `HelloWorld`.
Input Format
The input is given from Standard Input in the following format:
> $ X $
Output Format
Output the answer.
Explanation/Hint
### Sample Explanation 1
Deleting the $ 5 $ -th character of `HelloWorld` gives `HellWorld`. Thus, output `HellWorld`.
### Constraints
- $ X $ is an integer between $ 1 $ and $ 10 $ , inclusive.