diff --git a/6-concat.py b/6-concat.py index 3d1e66b..3a65554 100644 --- a/6-concat.py +++ b/6-concat.py @@ -1,5 +1,4 @@ #!/usr/bin/python3 str1 = "Holberton" str2 = "School" -# YOUR CODE GOES HERE. PLEASE REMOVE THIS LINE -print(f"Welcome to {str1}!") +print(f"Welcome to {str1} {str2}!")