n=1 while True: print( "{:3}".format(n)) n=n+1 if n==101: break