0

How can put input

How can I put input and have answer with this print(float(input("Enter a number: ")) + float(input("Enter another number: ")))

8th Jul 2017, 8:34 PM
Younis Alemour
Younis Alemour - avatar
1 ответ
0
num1 = float(input("enter a number")) num2 = float(input("enter second number")) print (num1 + num2)
8th Jul 2017, 8:51 PM
Stelios Power
Stelios Power - avatar