#include <iostream>

int main() {
	// your code goes here
	int i{25};
	while(i--) std::cout << std::rand() % 2 << ' ' ;
	
	return 0;
}