-3
a=input("Enter First Number ")
b=input("Enter second number ")
c=a+b
print("The Sum of two numbers are ",c)

"Why This Program not printing Sum of tho number?s?""

Leo Pard
  • 1
  • 2

1 Answers1

0

You need to cast the numbers to int. When you take an input, it is always a string. To cast a string to int, you can do int(a)+int(b)

jyorien
  • 113
  • 1
  • 5