#!/usr/bin/env bash

for i in {0..2}; do
	for j in {a..c}; do
		if [[ $i == '1' && $j == 'b' ]]; then
			continue 2
		fi
		echo "$i $j"
	done
done
