#!/usr/bin/env python
for numero in range(1,6):
	for cont in range(1,11):
		print ("%2d * %d = %2d" % (cont, numero, cont * numero))
	print()
	 	 