Select any two words and perform concatenation operation
# Select any two words and perform concatenation operation
str1 = raw_input("Enter first word :")
str2 = raw_input("Enter second word :")
str3 = str1 + str2
print "Concatenation of Two Words is :",str3
str1 = raw_input("Enter first word :")
str2 = raw_input("Enter second word :")
str3 = str1 + str2
print "Concatenation of Two Words is :",str3