id = 101 group = 'family_relations' number = 8 visible = True facts = 'family_relations' solution = '''\ descendant(X, Y) :- parent(Y, X). descendant(X, Y) :- parent(Y, Z), descendant(X, Z). '''