#include <iostream>
using namespace std;

int main() {
	bool b1,b2,b3,b4,b5;
	for(bool *b = &b1; b <= &b5;b++){
		*b = true;
	}
	
	// your code goes here
	return 0;
}