# Exercice 2

def table_de_2():
    for i in range(1,11):
        print("2 x", i, "=", 2*i)

table_de_2()