summaryrefslogtreecommitdiff
path: root/comp/work/5/567.py
blob: 691d278c864ab5e69e483c60f0658917f1e91cd8 (plain)
1
2
3
4
5
6
7
8
9
10
import sys

for x in range(1,11):
	for i in range(x, (x*10)+1):
		if i % x == 0:
			if i >= 10:
				sys.stdout.write(str(i)+"   ")
			else:
				sys.stdout.write(str(i)+"   ")
	print("")