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(\"ent
instead of (a+b), use (int(a) + int(b))
(a+b)
(int(a) + int(b)