How to ADD TWO NUMBERS in Python?

Devendra Tiwari
0

 

Python Program to Add Two Numbers

In this article, we've created many programs in Python to add two numbers using some popular approaches. Here are the list of programs to add two numbers in Python:

  • Simple Program to Add Two Numbers

To add two numbers in python, you have to ask from user to enter any two numbers. Now find the sum of given two numbers using + operator and print the result on output as shown in the program given below.

The question is, write a Python program to add two numbers entered by user. Here is its answer:

print("Enter First Number: ")
numOne = int(input())
print("Enter Second Number: ")
numTwo = int(input())
res = numOne+numTwo
print("\nResult =", res)
Tags

Post a Comment

0Comments
Post a Comment (0)