I was just getting into Python programming. I wrote a simple program to calculate sum of two user-input numbers:
a,b = input("enter first number"), input("enter second number")
print("sum of given numbers is ", (a+b))
Now if I enter the numbers as 23 and 52, what showed in the output is:
sum of given numbers is 23 52
What is wrong with my code?