Program to find the sum of two numbers
===================== SUM OF NUMBERS ===============
a=input("Enter The First Number :")
b=input("Enter The Second Number :")
c=a+b
print a," + ",b,"=",c
=================== OUTPUT =======================
Enter The First Number :17
Enter The Second Number :26
17 + 26 = 43
==================================================
No comments