Source code -
CLS
INPUT "Enter any number:";a
INPUT "Enter any number:";b
IF a < b THEN
PRINT "The smallest number is :";a
ELSE
PRINT "The smallest number is:";b
END IF
END