#include <iostream>

int main() {
	// your code goes here
	
	int* massive;
	int n;
	
	std::cin >> n;
	
	massive = new int[n];
	
	for (int i=0; i<n; i++) std::cout << massive[i] << ' ';
	
	return 0;
}