Class 10 Coding Showcase Practice Code
Class 10 Coding Showcase Practice Code
def cal():
a = int(input("Enter the first number: "))
b = int(input("Enter the second number: "))
print("\nSimple Calculator Results:")
print(f"Addition: {a + b}")
print(f"Subtraction: {a - b}")
print(f"Multiplication: {a * b}")
cal()