Python Program to Add Two Numbers

Python Program to Add Two Numbers


num1 = 22
num2 = 10

#To  Add two numbers
sum = num1 + num2

# to display the sum

print(sum)