提交时间:2025-07-18 09:23:44
运行 ID: 334332
#include<bits/stdc++.h> using namespace std; int main(){ int x; cin>>x; if(x%105==0) cout<<"3 5 7"; else if(x%15==0) cout<<"3 5"; else if(x%21==0) cout<<"3 7"; else if(x%35==0) cout<<"5 7"; return 0; }