19 lines
265 B
Text
19 lines
265 B
Text
Ask "Provide Any Number"
|
|
|
|
Put It into A
|
|
|
|
Ask " Provide Another Number"
|
|
|
|
Put it into B
|
|
|
|
if A is less than B
|
|
Put A&" Is less than " &B
|
|
end if
|
|
|
|
if A is greater than B
|
|
Put A& " is Greater than " &B
|
|
end if
|
|
|
|
If A is Equal to B
|
|
Put A& " is Equal to " &B
|
|
End If
|