#include <iostream>
#include <fstream>
using namespace std;
ifstream f("test.in");
ofstream g("test.out");
int main()
{
unsigned int n, divizori, div, exista=0;
f>>n;
while(n){
divizori=0;
for(div=1;div<=n;div++)
if(n%div==0)
divizori++;
if(divizori>=5){
g<<n<<' '; exista=1;
}
f>>n;
}
if(!exista) g<<-1;
f.close(); g.close();
return 0;
}