view problem29.py @ 0:0e08f4decf67

Adding files from xenon
author Dominic Cleal <dominic@computerkb.co.uk>
date Mon, 01 Dec 2008 02:44:16 +0000
parents
children
line wrap: on
line source

l = { }
for a in range(2, 101):
	for b in range(2, 101):
		l[a**b] = None
print len(l.keys())