I am having trouble getting an asterisk in the corner of my table... I'm allowing a user to input an integer and the program outputs a multiplication table starting with 1 going to the number the user input. I need an asterisk in the top left corner so instead of looking like:
1 2 3 4 5
2 4 6 8 10
3 6 9 12 15
4 8 12 16 20
5 10 15 20 25

it should look like:

* 1 2 3 4 5
1 1 2 3 4 5
2 2 4 6 8 10
3 3 6 9 12 15
4 4 8 12 16 20
5 5 10 15 20 25



any help on getting it there? im using for loops to create the table