size(150, 150); background(120); int a = 23; int b = -25; int c = 47; int d = -12; int e = -89; textSize(14); if(a>0){ fill(0,255,0); } else { fill(255,0,0); } text(abs(a),10,20); if(b>0){ fill(0,255,0); } else { fill(255,0,0); } text(abs(b),35,20); if(c>0){ fill(0,255,0); } else { fill(255,0,0); } text(abs(c),60,20); if(d>0){ fill(0,255,0); } else { fill(255,0,0); } text(abs(d),95,20); if(e>0){ fill(0,255,0); } else { fill(255,0,0); } text(abs(e),120,20); save("activity_9");