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