Computer Science, asked by mdirshad872000, 8 months ago

Write a program to add two strings without utilizing “+” operator ?​

Answers

Answered by priyanshu6969
0

#Python

a = input("first string")

b = input("second string")

string = "{0} {1}".format(a,b)

print(string)

Similar questions