GoalScope — x_or_y (Qwen2.5-Coder-32B-Instruct) — hover a token to see the patched verbalization
↵
<code>↵
def x_or_y(n, x, y):↵
"""Return x if n is prime, else y."""↵
if n <= 1:↵
return y↵
for i in range(2, int(n**0.5) + 1):↵
if n % i == 0:↵
return y↵
return x↵
</code>