#include <stdio.h>
int main ()
{
int array1[500], copy[500];
int i, n = 0, numS = 45, numF = 542;
//Enter
for (i = numS; i <= numF; i++)
{ array1[n] = i; n++; }
//copy
for (i = 0; i < 500; i++)
{ if (array1[i] % 2 != 0)
copy[i] = array1[i];
else copy[i] = 0;
} //print odd number from copy array
for (i = 0; i < 500; i++)
{
if (copy[i] != 0)
printf("%d\t",copy[i]);
}
printf("\n");
return 0;
}