Run ID:132248

提交时间:2025-10-07 14:23:24

a=[] for x in range(101,200,2): for i in range(x): if x/i!=x//i: a.append(x) print(a)