BlueBook
Write a program that reads one positive integer
Sample Input
Copy
5
Sample Output
Copy
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
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.