BlueBook
Write a program that reads one positive integer and then prints its times table containing values up to .
Sample Input
5
Sample Output
5 X 1 = 5
5 X 2 = 10
5 X 3 = 15
5 X 4 = 20
5 X 5 = 25
Write a program that reads one positive integer and then prints its times table containing values up to .
5
5 X 1 = 5
5 X 2 = 10
5 X 3 = 15
5 X 4 = 20
5 X 5 = 25
Comments
If any of you struggle on this, remember that the code has to output the exact same thing as the sample. Just saying.