def concatenate_strings(str1, str2):
    concatenated_string = str1 + str2
    return concatenated_string

# Example usage:
string1 = input("Enter first string: ")
string2 = input("Enter second string: ")
result = concatenate_strings(string1, string2)
print(f"The concatenated string is: {result}")

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: