Subtraction of two numbers in Python
0 minute read
#Made By Garvit Technologies#Print {Enter To Number To Be Subtract} Using Pythonprint("Enter Two Number To Be Subtract")# Now here we take the variablex = input("Type a number: ")y = input("Type another number: ")#Now we will take a variable in which we will Subtract them bothsub = int(x) - int(y)#Now we will print the subtract we have doneprint("The Subtract is: ", sub)