# Exercise 5

Create a loop to print following parallelogram made up of asterisks *.

         ********************
        ********************
       ********************
      ********************
     ********************
    ********************
   ********************
  ********************
 ********************
********************
1
2
3
4
5
6
7
8
9
10

It has ten rows and 20 * on each row.

Last Updated: Apr 22, 2020, 1:39 PM