#include int main( void ) { int m; char s; scanf("%d", &m ); for(int i=1; i <= m ; i+=2 ) { printf("%c%d",s,i); s = ' '; } printf("\n"); }