Computer Science, asked by kartikeyashukla1980, 17 days ago

write a program to find the difference of two numbers​

Answers

Answered by ritika20192
2

Explanation:

This program will find the difference of two integer numbers. Difference is quite different from subtraction, in subtraction we just subtract second number from first number and here to get difference we will subtract smallest number from largest number, so that we can get correct difference of them.

Answered by cheemtu
0

Here is the python program

num1 = int(input("Number 1: "))

num2 = int(input("Number 2: "))

result = num1 - num2

print("Your result is: ",result)

pls mark brainliest

Similar questions