Set 113 Practical Question

⭐ Q14. दो संख्याओं पर जोड़, घटाना, गुणा, भाग

Example Code (Read Only):


a = int(input("Enter first: "))
b = int(input("Enter second: "))
print("Add =", a+b)
print("Sub =", a-b)
print("Mul =", a*b)
print("Div =", a/b)

Python Online Editor