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)
- Python Program to find sum of two numbers
- Python Program to enter two numbers and perform all arithmetic operations – arithmetic calculator
- Python Programs to calculate the area and perimeter of a rectangle
- Python program to calculate the area and circumference of a circle
- Python program to calculate the sum and average of three numbers
- Python program to convert KM into Inches
- Python program to calculate Simple Interest and Amount
- Python program to calculate Compound Interest and Amount
- Python program to calculate the area of a triangle
- Python program to convert temperature Fahrenheit to Celsius and Celcius to Fahrenheit