Lab Assignment: total points - 20pts due - Batch #3 (12/8/17) Goal: (20 points) Someone should be able to load in your factsheet to a prolog interpreter and type "follow_the_crown(elizabeth_ii)." This should output each living successor to Queen Elizabeth II in order, starting with the Queen's son. Use lists for children. Ex: parent(elizabeth_ii, [charles, anne, andrew, edward]). Hint: You'll very likely need to use the [Head|Tail] logic we talked about. -or- [pick one of these] (10 points) Same problem, but just store parent-child relationships individually (not in a list)