# -*-coding:Latin-1 -*
import os
print("Table de 7")
i=0
while i<=10:
	print(i,"*7=",i*7)
	i+=1
os.system("pause")