import java.util.regex.*;
import java.lang.*;

class Main
{
	public static void main (String[] args) throws java.lang.Exception
	{
		String mydata = "<a href=\"javascript:;\" id=\"listen_880966\" onclick=\"MP3PREVIEWPLAYER.showHiddePlayer(880966, 'http://m...content-available-to-author-only...e.fr/' + 'lol/mp3/Paint_It_Black/18_the_black_dahlia_murder_-_paint_it_black_(rolling_stones)-bfhmp3.mp3')\" title=\"Listen Paint it Black    The Black Dahlia Murder   Great Metal Covers 36\" class=\"button button-s button-1 listen \"   >";
                Pattern pattern = Pattern.compile("'http://m...content-available-to-author-only...e.fr/'\\s.\\s'[\\(\\).A-Za-z0-9/_-]+'");
                Pattern title = Pattern.compile("title=\\\"[A-Za-z0-9\\s]+\\\"");
                Matcher matcher = pattern.matcher(mydata);
                if (matcher.find())
                {
                    System.out.println(matcher.group(0));
                    
                }
                matcher = title.matcher(mydata);
                if(matcher.find())
                    System.out.println(matcher.group(0));
	}
}