i = 1 while i <= 3: j = 1 while j <= i: print(f"Outer loop variable, i: {i}, Inner loop variable, j: {j}") j += 1 i += 1