Just need to add default values and checks for returning None at the beginning of the `Run()` func: ```py Run(x: hint = 0): if x is None: return None # the rest of the code ```