for i in range(1, 10):
sum = 0; j = i
while ① and j <= 10:
sum += j
j += 1
if sum == 20:
print("从", ② , "到", ③ )
该程序的输出结果是“从 2 到 6”,则划线处的代码为( )