Hello Adelaide!
        
            Submit solution
        
    
    
    
    
    
    
    
    
    
                    
                
        
            
        
        Points:
        
                1        
    
    
        Time limit:
        1.5s
    
    
        Memory limit:
        256M
    
    
                        Author:
                        
                    
        
                    Problem type                
                
        
                Allowed languages
            
            
C, C++, Java, Python            
        Welcome to the Adelaide University Competitive Programming League! Your job is to stand at the door and greet participants.
For each person who that comes through the door, output "Hello !", where 
 is the name of the person who walked in.
Input
The first line consists of an integer  
, the number of test cases (people who will walk through the door).
Each test case will contain a string , the name of a person who walked through the door.
Output
For each test case, print the answer on a separate line.
Example
Input
3
Tom
Jack
Irhas
Output
Hello Tom!
Hello Jack!
Hello Irhas!
Comments
What the dog