i = 1
while i < 10:
    j = i
    while j < 10:
        print(f"{j} ", end="")
        j = j + 1
    print("")
    i = i + 1
print("Complete!")
i = 1 while i < 10 : j = i while j < 10 : print ( f" {j} " , end= "" ) j = j + 1 print ( "" ) i = i + 1 print ( "Complete!" )