a = list(range(6))
a*a
import itertools
itertools.product(range(6),range(6))
set(itertools.product(range(6),range(6)))
