Write a prolog program to read elements into a list from the keyboard. You stop entering elements by inputing "end" as an atom. e.g. of the program run enter atom in list: matthew. enter atom in list: mark. enter atom in list: luke. enter atom in list: john. enter atom in list: end. List = [matthew,mark,luke,john]. Yes.