38.2k views
4 votes
Write a program that read two numbers from user input. Then, print the sum of those numbers.

1 Answer

4 votes

Answer:

#This is in Python

number1 = raw_input("Enter a number: ")

number2 = raw_input("Enter another number: ")

sum = float(number1) + float(number2)

print(sum)

Step-by-step explanation:

User Domin
by
5.0k points