Write a program to calculate the product and difference of two numbers entered by user in visual basic 6
Answer fast and get the brainliest mark
Answers
Answered by
0
Answer:
I can write program with python language so don't mind
Explanation:
a = int(input("enter thr first no."))
b = int(input("enter the second no.))
#for multiplication
def multiply(a, b):
multi = a * b
print(f"the multiplication is {multi}")
def difference(a, b):
diff = a - b
print(f"the difference is {diff}")
multiply(a, b)
difference(a, b)
Similar questions