#include
using namespace std;
int main()
{
int i=1, m;
m = 0;
for ( i; i < 1000; i++)
{
if
(i % 9 == 0 && i % 11 == 0)
break;
m = m + 1;
if (m % 5 == 0)
cout << m << endl;
}
return 0;
}