def insert_after (L, n1, n2):
      '''L is a list of ints; n1 and n2 are ints.
      After each occurrence of n1 in L, insert the integer n2.'''
      
      pass