1. Home
  2. /
  3. Blog
  4. /
  5. Python Program to Add Two Numbers
Python

Python Program to Add Two Numbers

September 27, 2022 1 min read 2,213
Python Program to Add Two Numbers
num1 = 22
num2 = 10

#To  Add two numbers
sum = num1 + num2

# to display the sum

print(sum)
Share:
Read next

Related articles