Python/VIT/sem-1/ex-04/sum-of-two-numbers.py
x=float(input("Enter the first number: "))
y=float(input("Enter the second number: "))
s=x+y
print("Sum of the numbers {0} and {1} is {2}".format(x,y,s))
x=float(input("Enter the first number: "))
y=float(input("Enter the second number: "))
s=x+y
print("Sum of the numbers {0} and {1} is {2}".format(x,y,s))