# Allison Obourn
# CS 115, Autumn 2021
# Lecture 16

# This program prompts the user for a number of stars to print and then
# prints that many lines with one star per line.

def main():
    stars = int(input("How many stars? "))

    count = 0
    while count != stars:
        print("*")
        count = count + 1

main()
