たのしい
from math import sin, cos
SIZE = 600
size(SIZE, SIZE)
x = 19
y = 324
th = 1
dth = 0.5
ddth = 0.1
s = 30
colormode(RGB, 1)
beginpath()
moveto(x, y)
for i in range(300):
x += sin(th) * s
y += cos(th) * s
th += dth
dth += ddth
lineto(x, y)
print x, y
endpath()