top of page
Click here to go to the home page of AskTheCode.

Python program to add two numbers

Asked: Anonymously |Category: Python

a=eval(input("Enter 1st Number : "))

b=eval(input("Enter 2nd Number : "))

sum=a+b

print(sum)




Recent Posts

See All

Comments


bottom of page