Problem
Write a function, RGB, that takes a hexadecimal string (such as "00A3FF") and returns the corresponding RGB triple - in this case (0, 163, 255). Python 'understands' triples, so a return statement of the form return (redVal, greenVal, blueVal) will include the parentheses and commas.