Run ID:147441
提交时间:2026-02-05 11:10:07
#include<iostream> using namespace std; int main(){ int a,b; cin>>b; while(b>a){ if(b%3==2&&b%5==3&&b%7==2){ cout<<b; break; } } b++; return 0; }