# Author: Scott Wehrwein
# Date: 04/13/2021
# A program that uses math functions and some arithmetic
# to draw a wavy picture using text.

from math import sin

x = 0.0

while x < 10:
    sx = sin(x)
    print('#' * int((sx + 1) * 8))
    x += 0.2
