while

while i<10:
   print 'run'
   if i>5:
           break
else:
   print "end run"