#!/usr/bin/perl

while (<STDIN>) {

	/href=\"(.*\.jpg)\"\>/;
	print "$1\n";

}

