# infinite loop

while True:
    a = input("Enter your name: ")
    if a == 'Quit' or a == 'q':
        break
    print("Hello", a, 'Good Morning')