If we want to print the largest value found after each comparison, where should the print statement be added?
largest_so_far = -1
for the_num in [9, 41, 12, 3, 74, 15]:
if the_num > largest_so_far:
largest_so_far = the_num
# Missing print statement