What will be the final output of the following code snippet? zork = 0 print('Before', zork) for thing in [9, 41, 12, 3, 74, 15]: zork = zork + 1 print('After', zork)