Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 2

PYTHON PROGRAM TO

ADD TWO NUMBERS


# This program adds two numbers
num1 = 1.5
num2 = 6.3
# Add two numbers
sum = num1 + num2
# Display the sum
print(“The sum of to numbers is “, sum)
EXAMPLE 2: ADD TWO NUMBERS WITH USER
INPUT

# Store input numbers


num1 = int(input('Enter first number: '))
num2 = int(input('Enter second number: '))
# Add two numbers
sum = num1 + num2
# Display the sum
print(“The sum of two numbers is “,sum)

You might also like