import math

# Skriv ut n *
def stars (n):
    print (n * '*')

pi = 3.1416

varv = 5
while varv:
  x = 0.0
  while x < pi:        
    stars (int (78 * math.sin (x)))
    x = x + 0.3
  varv = varv - 1
