DevJourney

Python/Basics/Sum/sum.py

#Program to find sum of 2 numbers
x=int(input("Enter 1st number : "))
y=int(input("Enter 2nd number : "))
s=x+y
print("The sum of {0} and {1} is {2}".format(x,y,s))
View on GitHub