#include <iostream>

int main() {
	int array[] = { 1, 3, 5, 7, 9, 2, 4, 6, 8, 0 };
	for(auto i : array) {
		std::cout << i << "\n";
	}
	return 0;
}