import sys
if len(sys.argv) < 2:
print("Missing command-line argument!")
sys.exit(1)
for arg in sys.argv[1:]:
print(f"Hello {arg}!")
sys.exit(0)