You are on page 1of 1

for x in xrange(1,11):

for y in xrange(1,11):
print '%d * %d = %d' % (x,y,x*y)

You might also like