#!/usr/bin/env python def main(): i=0 max=pow(10,15) while True: print "%015d"%i, i=(i+1)%max if __name__ == '__main__': main()