Concatenation

Concatenation is the act of combining two strings together to make one single string.

Example Code Snippet

# Creating three unique strings
word1 = "Super"
word2 = "Study"
word3 = "Party"

# Concatenating all three strings into one string 
final_word = word1 + word2 + word3

Target

You should be able to use Input, Process, Output to create a solution.