Anjeev Singh Academy

Python Program to find sum of two numbers

Python Program: Input two numbers and find their sums.

#############################
# Language : Python
# Topic: Adding two Numbers
# Author : Anjeev Singh
#############################

n = int(input("Enter Number 1 : "))

m = int(input("Enter Number 2 : "))

total = n + m

print("Sum of ", n, "and", m, "is", total)

Sorry! You cannot copy content of this page. Please contact, in case you want this content.

Scroll to Top