\begin{tabular}{l|l} ACtivity & 5.8.3: Nested loops: Print seats. \end{tabular} Given num_rows and num_cols, output the label for each seat of a theater. Each seat is followed by a space, and each row is followed by a newline. Define the outer for loop, initialize curr_col_let with the starting row letter, and define the inner for loop. If the input is: 23 1A1B1C2A2B2C Notes: - Rows are in ascending order. Seats in the first row all start with the integer 1. - Columns are in alphabetical order. Seats in the first column all start with the letter 'A'. - print(x, end ="), where " are two single quotes, outputs x without ending with a default newline. - chr( ord(letter) +1) can be used to increment letters. Learn how our autograder works 509018.3618074.9×3zqy7 num_rows = int ( input ()) num_cols = int ( input ()) print ( f?{ curr_row }{ curr_col_let } ', end=' ') curr_col_let =chr( ord ( curr_col_let )+1) print()