13 lines
305 B
Python
13 lines
305 B
Python
# Get two numbers from the user
|
|
|
|
num1 = float(input("Enter the first number: "))
|
|
num2 = float(input("Enter the second number: "))
|
|
|
|
# Perform basic operations
|
|
|
|
print(f"Addition: {num1 + num2}")
|
|
print(f"Subtraction: {num1 - num2}")
|
|
print(f"Multiplication: {num1 * num2}")
|
|
print(f"Division: {num1 / num2}")
|
|
|