// A "bubble sort" with three numbers
Given numbers a, b, c

IF a IS GREATER THAN b THEN
SWAP a AND b
END IF
// Now we know that a is larger than b, but we don't
// know whether or not b...