digraph g { s [shape=box,label=x = x_in
y = y_in>]; End [shape=box,label=End>]; s -> "while (x > y)" -> "x = x - 1" -> "while (x > y)" -> "print(x)" -> End; }