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)