提交时间:2025-12-08 17:30:53
运行 ID: 75620
#include<bits/stdc++.h> using namespace std; int main(){ int c=0,b=0,i=2; while(b<100002){ for(int w=2;w<i;w++){ if(i%w==0) c++; } i++; if(c==0) b++;} cout<<i; return 0;}