import random
def generate_random_rgb_color():
red = random.randint(0, 255)
green = random.randint(0, 255)
blue = random.randint(0, 255)
print(f"Random RGB Color: rgb({red}, {green}, {blue})")
generate_random_rgb_color()
'''
run:
Random RGB Color: rgb(253, 113, 35)
'''