#!/usr/bin/env python3 class Color: def __init__(self, r: int, g: int, b: int) -> None: self.r = r self.g = g self.b = b