# Author: James Bond # Version: May 17, 2023 # Handtrace the following for extra practice (trace it before running it!) i = 1 while(i <= 2): j = 1 while(j <= 3): print(i,j) j = j + 1 i = i + 1