Source code:
CLS
INPUT "Enter the first number:"; num1
INPUT "Enter the second number:"; num2
subtraction = num1 - num2
PRINT "The difference between those two numbers are:"; subtraction
END