C++: Programming Problem - Print Parallelogram

Name __________________________________

(10 points) Write a program which reads an int, then prints a parallelogram with edges that are that size. For example, when it reads the number 5, the output would be

  *****
   *****
    *****
     *****
      *****

Hints