Euler Problem #17: 21124
	include("Numbers/Words.php");
	$nw = new Numbers_Words();
	$string = "";
	for($i=1;$i<=1000;$i++){
		$string .= $nw->toWords($i);
		if($i>100 && $i%100 != 0) $string .= "and";
	}
	$string = preg_replace('~\s|-~','', $string);
	echo strlen($string);