# coding=utf-8 name = 'ab/2' slug = 'a*b*' description = '''\

Write a DCG with the starting symbol ab for the language ambn, where m, n ≥ 0.

Example words: [], a, aab, abbb, bbb.

Hint: to generate words of increasing length, use the query conc(Word,_,_), ab(Word,[]).

''' hint = {}