Lesson 15: Simple Calculator Project

num1 = int(input("Enter first number: "))
num2 = int(input("Enter second number: "))

print("Sum:", num1 + num2)
print("Difference:", num1 - num2)
print("Product:", num1 * num2)

Congratulations 🎉 You’ve completed the Python basics!