I am a C programmer with a decent knowledge of C++. I am learning python and was trying some stuff with the new syntax.
a=input("a: ")
b=input("b: ")
print("a+b=", 2*a + b)
Say I enter a=10 and b=20. Very strangely, this gives an output of 101020.
Why is this happening?