import java.io.PrintStream;

public class PlayList
{
private Song[] list;

public PlayList()
{
this.list = new Song[0];
}