# Author: Scott Wehrwein
# Date: 04/13/2021
# An example showing nested while loops.
i = 1
while i < 3:
    j = 0
    while j < 3:
        print(i * j, end=" ")
        j += 1
    print()
    i += 1
