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: ")))
1 Resposta
0
num1 = float(input("enter a number"))
num2 = float(input("enter second number"))
print (num1 + num2)