Computer Science, asked by kmavp2910, 6 hours ago

python program, write a program perform subtraction snd multiplication of two numbers​

Answers

Answered by keerthisaa16
0

Explanation:

a=5

b=4

c=a*b

d=a-b

print("product of two num:",c)

print("diffrence of two num:",d)

mark me as brainliest

Answered by MrTSR
0

The C0DE

  • For subtraction

number1 = 10

number2 = 5

number = number1 - number2  #for subtraction

print(number)

  • 0UTPUT

5

  • For multiplication

number1 = 10

number2 = 5

number = number1 * number2  #for multiplication  

print(number)

  • 0UTPUT

50

PS - Do let me know if you want both at the same time!

Similar questions