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