#include
using namespace std;
int main()
{
int n;
cin >> n;
for (int i = 2; i <= n; i++)
{
int s = 0;
for (int j = 1; j < i; j++)
{
if (i % j == 0)
{
s += j;
}
}
if (s == i)
cout << i;
}
return 0;
}