def loops():

  count = 0

  for x in range(1,5):

    for y in range(1,3):

      count = count + 1
      print x,y,"--Ran it", count,"times"

