提交时间:2022-08-03 17:29:29

运行 ID: 56999

#include<bits/stdc++.h> using namespace std; long long shu=1; int n,ans,al,t1,t2; int main(){ cin>>t1>>t2; for(int i=t1;i<=t2;i++){ shu=i; for(int j=1;j<=shu;j++){ if(shu%j==0){ ans++; } } }cout<<ans; return 0; }