"""WAP to perform add, subtraction, multiplication, division on two integer number"""

def perform_operations(a, b):
    print("Addition:", a + b)
    print("Subtraction:", a - b)
    print("Multiplication:", a * b)
    print("Division:", a / b)

a = int(input("Enter first number: "))
b = int(input("Enter second number: "))
perform_operations(a, b)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: