Algorithm to find smaller of three numbers, A,B,C and min. flowchart should output/print smaller number as min

min = A

if B < min then min = B
if C < min then min = C
output min