Subtraction of two numbers in Python

 

#Made By Garvit Technologies

#Print {Enter To Number To Be Subtract} Using Python

print("Enter Two Number To Be Subtract")
# Now here we take the variable

x = input("Type a number: ")
y = input("Type another number: ")

#Now we will take a variable in which we will Subtract them both

sub = int(x) - int(y)

#Now we will print the subtract we have done

print("The Subtract is: ", sub)