5 lines
175 B
Python
5 lines
175 B
Python
print("Simple Python calculator")
|
|
first_number = float(input("First: "))
|
|
second_number = float(input("Second: "))
|
|
print("The result is: " + str(first_number + second_number))
|