#include <iostream>
#include <vector>

using namespace std;

int main() {
	vector<int> a = {0, 0, 0, 0};
	vector<bool> b = {false, false, false, false};
	
	for (auto now : a) {
		now = 1;
	}
	
	for (auto now : b) {
		now = true;
	}
	
	for (auto now : a) cout << now << " ";
	cout << endl;
	for (auto now : b) cout << now << " ";
	
	return 0;
}
