def color(s, t):
if s == "fen":
print("\033[35m", t, sep="", end="")
elif s == "hong":
print("\033[31m", t, sep="", end="")
elif s == "lv":
print("\033[32m", t, sep="", end="")
else:
print("\033[0m", t, sep="", end="")
print("Super Subroutine")
print("With my ", end="")
color("fen", "new program")
color("r"," I can just call red('and ' ) ")
color("hong", "and"),
color("r"," that word will appear in the color I set it to .")
color("r","With no ")
color("lv", "weird gaps ")
color("r",".")
color("r","Epic")