Multiple integers, representing the number of ducklings, are read from input and inserted into a linked list of DuckNodes. For each zero found in the linked list of DuckNodes, output "Found a duck without ducklings." on a new line.
Ex: If the input is 4 18 13 22 0, then the output is:
Found a duck without ducklings.
c++