Python program to add two numbers

634
Python program to add two numbers
a=int(input("enter fist number "))
b=int(input("enter second number "))
c=a+b
print("Addition of first and second number is",c)

  Output:
  enter fist number 20
  enter second number 23
  Addition of first and second number is 43

 

 

Python program to add two numbers program to add two numbers in python Add two numbers in python Add two number program