I want to print sum of numbers and some string like:
print("root: " + rootLeaf + " left:" + leftLeaf + "sum: " +(rootLeaf+leftLeaf) )
here "root", "left" and "sum" is string where as rootLeaf and leftleaf are integers and i want to find their sum.
I checked the post here but i couldn't achieve the sum of the integers (math operation in string concatination)