1# basic while loop
2
3x = 0
4while x < 2:
5    y = 0
6    while y < 2:
7        z = 0
8        while z < 2:
9            z = z + 1
10            print(x, y, z)
11        y = y + 1
12    x = x + 1
13