diff --git a/scripts/CMYK To RGB/CMYKtoRGB.py b/scripts/CMYK To RGB/CMYKtoRGB.py index 64bf3f2..49e774e 100644 --- a/scripts/CMYK To RGB/CMYKtoRGB.py +++ b/scripts/CMYK To RGB/CMYKtoRGB.py @@ -8,11 +8,11 @@ def CMYKtoRGB(c, m, y, k) : b=round(255.0-((min(1.0, y*(1.0-k)+k))*255.0)) return (r,g,b) -print("Welcome To CMYK to RGB Convertor || INPUT CMYK codes and rest leave it to the convertor\n") +print("Welcome to the CMYK to RGB Convertor || Input CMYK codes and rest leave it to the converter\n") c=int(input("C Value: ")) m=int(input("M Value: ")) y=int(input("Y Value: ")) k=int(input("K Value: ")) print("Processing...") -print("\nYour RGB values are", CMYKtoRGB(c,m,y,k)) \ No newline at end of file +print("\nYour RGB values are", CMYKtoRGB(c,m,y,k))