- Get link
- X
- Other Apps
- Get link
- X
- Other Apps
Solution :
num1=input("Enter First Number :")
num2=input ("Enter Second Number :")
sum=float(num1)+float(num2)
print("The sum of {0} and {1} is {2}".format(num1,num2,sum))
num2=input ("Enter Second Number :")
sum=float(num1)+float(num2)
print("The sum of {0} and {1} is {2}".format(num1,num2,sum))
OR
Comments
Post a Comment