#include<stdio.h>
int main()
{
int x=1;
while(x<=100)
{
if(x%2==1)
printf("%d",x);
x++;
}
return 0;
}