<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>
<channel>
	<title>Comments on: Add all the natural numbers below 1000 that are multiples of 3 or 5</title>
	<atom:link href="http://selinap.com/add-all-the-natural-numbers-below-1000-that-are-multiples-of-3-or-5/feed/" rel="self" type="application/rss+xml" />
	<link>http://selinap.com/add-all-the-natural-numbers-below-1000-that-are-multiples-of-3-or-5/</link>
	<description>To leave furtively and stealthily.</description>
	<pubDate>Tue, 06 Jan 2009 07:25:16 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: mike_W</title>
		<link>http://selinap.com/add-all-the-natural-numbers-below-1000-that-are-multiples-of-3-or-5/comment-page-1/#comment-22</link>
		<dc:creator>mike_W</dc:creator>
		<pubDate>Mon, 28 Apr 2008 08:27:55 +0000</pubDate>
		<guid isPermaLink="false">http://selinap.com/?p=20#comment-22</guid>
		<description>sum([y for y in range(1001) if y%3==0 or y%5==0])</description>
		<content:encoded><![CDATA[<p>sum([y for y in range(1001) if y%3==0 or y%5==0])</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://selinap.com/add-all-the-natural-numbers-below-1000-that-are-multiples-of-3-or-5/comment-page-1/#comment-2</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Wed, 16 Apr 2008 20:16:00 +0000</pubDate>
		<guid isPermaLink="false">http://selinap.com/?p=20#comment-2</guid>
		<description>for($i=0,$j=0;$i&lt;1000;$i++){if($i%3==0or$i%5==0){$j+=$i;}}echo$j;</description>
		<content:encoded><![CDATA[<p>for($i=0,$j=0;$i&lt;1000;$i++){if($i%3==0or$i%5==0){$j+=$i;}}echo$j;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
