class Rgb{ int r; int b; int g; Rgb(int r, int g, int b) { this.r = r; this.g = g; this.b = b; } }