#include <bits/stdc++.h>
using namespace std;
int main (){
for(int i=100 ; i<200 ; i++)
{
if(i%3==2 && i%5==3 && i%7==5){
cout<<i<<endl;
break;
}
}
}
/**************************************************************
Problem: 1017
User: wtq001
Language: C
Result: Compile Error
****************************************************************/