def loop(x):
#
    print "Unraveling the infinite loop:"
#
    i = 1
    while 0 == 0:
        print "step " + repr(i) + ",",
        i = i + 1


