# Increase red using x and y indices

def increaseRed2(picture):
  for x in range(1, getWidth(picture)):
    for y in range(1, getHeight(picture)):
      px = getPixel(picture, x, y)
      value = getRed(px)
      setRed(px,value*1.1)

