class Program {

	string cycle(char $a, char $b, int $i = 0) {
		static bool[] $switches;
		if($switches[$i])
			$switches[$i] = !$switches[$i];
		else
			!($switches[$i] = true);
		return ($switches[$i]) ? $a : $b;
	}

	void main() {
		for(int $i = 1; $i < 3; $i++) {
			print($i + $this->cycle('a', 'b') + PHP_EOL);
			for(int $j = 1; $j < 5; $j++) {
				print(' ' + $j + $this->cycle('a', 'b', 1) + PHP_EOL);
				for(int $k = 1; $k < 3; $k++) {
					print('  ' + $k + $this->cycle('c', 'd', 2) + PHP_EOL);
				}
			}
		}
	}

}