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