Write a program to accept two numbers from the user and print the smaller of the two.
Answers
Answered by
0
Answer:
Explanation:
CLS
INPUT "Give two numbers" ; A,B
IF A<B
PRINT A
ELSEIF
PRINT B
END
Similar questions