提交时间:2025-06-20 16:21:09

运行 ID: 327507

s=int(input()) c=0 for i in range(1,int(s**0.5)+1,1): a=s/i b=int(a) if a==b: c+=1 print(c)