# comment before
i = 0
while (i < 2): # while test comment on-line
    print "under 5"
    i += 1 # augmented assignment on-line
    # this comment disappears
else: # else on-line
    print "bigger" # print on-line

# after the second body (but actually in the module node)!