Receive 3 numbers and display them in ascending order from smallest to largest using flowchart?

Start

Input A, B, C
Compare A and B
If A > B
Swap A and B
Compare B and C
If B > C
Swap B and C
Compare A and B
If A > B
Swap A and B
Display A, B, C
End