# Recipe 9: Increase the amount of red in a picture by 20%

def increaseRed(picture):
  for p in getPixels(picture):
    value=getRed(p)
    setRed(p, value*1.2)

