GoalScope — rounded_avg (Qwen2.5-Coder-32B-Instruct) — hover a token to see the patched verbalization
<code>↵ def rounded_avg(n, m):↵ """Compute the average of integers from n to m inclusive."""↵ return round((n + m) / 2)↵ </code>↵ ↵