# Author: Scott Wehrwein
# Date: 04/21/2021
# Defines a function that prints a rectangle of asterisks to the screen.

def print_rectangle(width, character):
    print(width * character)
    print(width * character)