#include <bits/stdc++.h>
using namespace std;
int main(){
int i=1,n;
while(i<=500)
{if(i%3==2&&i%5==3&&i%7==2) {cout<<i<<endl;}
i++;}
return 0;
}
/**************************************************************
Problem: 1021
User: ljl2
Language: C++
Result: Accepted
Time:5 ms
Memory:2072 kb
****************************************************************/