colors = ["Red", "Green", "Blue"]
shapes = ["Circle", "Square", "Line"]

for color in colors:
    for shape in shapes:
        print(f"顏色: {color}, 形狀: {shape}")