# 輸入
a ← 輸入整數
b ← 輸入整數
c ← 輸入整數

# 排序
if a > b:
    swap(a, b)   
if b > c:
    swap(b, c)
if a > b:
    swap(a, b)

# 輸出
輸出 a 的值
輸出 b 的值
輸出 c 的值