Олимпиадный тренинг

Задача 23082. For loop statement. Multiplication table


Задача

Темы: Цикл for
You need to write a program that, according to the number N given from the keyboard, prints a multiplication table by a given number, for example, for N = 2, the program should output the following information:
2*1=2
2*2=4
2*3=6
2*4=8
2*5=10
2*6=12
2*7=14
2*8=16
2*9=18
2*10=20