Write a program to add two strings without utilizing “+” operator ?
Answers
Answered by
0
#Python
a = input("first string")
b = input("second string")
string = "{0} {1}".format(a,b)
print(string)
Similar questions