Answers for "add two numbers in python with explaination"

-1

how to add two numbers in python

num1 = int(input('any number'))
num2 = int(input('any number'))
print(sum(num1,num2))
Posted by: Guest on June-07-2021

Code answers related to "add two numbers in python with explaination"

Python Answers by Framework

Browse Popular Code Answers by Language