Run ID:137821

提交时间:2025-11-22 17:29:08

#include<bits/stdc++.h> using namespace std; bool a[105]; int main(){ for(int i=1;i<=100;i++){ for(int k=1;k>=100;k++){ if(k%i==0) a[k]=!a[k]; } } for(int k=1;k<=100;k++){ if(a[k]==1) printf("%d ",k); } return 0; }