112k views
2 votes
Project stem 2.3 code practice question 2

1 Answer

5 votes

Answer:

"Write a program that accepts two decimal numbers as input and outputs their sum."

a = float(input("Enter an integer: "))

b = float(input("Enter an integer: "))

print(a + b)

Step-by-step explanation:

We are just entering an integer and having the code float the variable down to our print function thats why we have added the "float" variable

Glad to help!
Stay up and Stay Blessed!

User Linello
by
8.2k points