I'm new and I'm trying math in python but i ran into an issue. Let's say a=10 and b=20 so a+b=30. But when I run the code i get 1020 instead. I got a tutorial, followed it, but it still doesn't work.
a = input('what is a?')
b = input('what is b?')
c = 0
c = a + b
print ('answer is', c)
I'm on python 3.9