#262. helloName

helloName

Background

Description

Given a string name, e.g. "Bob", return a greeting of the form "Hello Bob!".

Format

Input

Output

Samples

Bob
"Hello Bob!"
Alice
"Hello Alice!"
X
"Hello X!"

Limitation

1s, 1024KiB for each test case.