Python Program To Subtracts To Numbers Where The Numbers Enter By The User.
Python Program to subtracts two numbers where the numbers enter by the user.
Source Code
# This program subtracts two numbers
# Store input numbers from user
num1 = int(input('Enter first number: '))
num2 = int(input('Enter second number: '))
# Subtract two numbers
dif = num1 - num2
# Display the difference
print('The difference between ',num1,' and ',num2,' is ',dif)
Click here to run this code in online πππcompiler
Click here to get app for android.
π⤵️
➡️➡️➡️πππ
πππ⬅️⬅️⬅️
Output
Create by π °πππ ½ π Ίπππ ·ππ °π ·Send Feedback To ππ⬇️⬇️

Comments
Post a Comment