x = int(input("Enter the first number: "))y = int(input("Enter the second number
18-03-2024
x = int(input("Enter the first number: "))
y = int(input("Enter the second number: ")) print("Sum:", x + y)
print("Difference:", x - y)
print("Product:", x * y)
print("Quotient:", x / y)
Copyrights © 2024 letsupdateskills All rights reserved