BlueBook - Times Tables

View as PDF

Submit solution

Points: 3
Time limit: 1.0s
Memory limit: 16M

Problem type
BlueBook

Write a program that reads one positive integer N (1 \le N \le 100) and then prints its times table containing values up to N \times N.

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

Comments


  • 0
    Chad_Li1  commented on July 22, 2022, 12:49 p.m.

    If any of you struggle on this, remember that the code has to output the exact same thing as the sample. Just saying.