1

(17 відповідей, залишених у Python)

from turtle import *
color('black', 'yellow')
begin_fill()
while True:
    goto(0, 70)
    goto(70, 70)
    goto(70, -70)
    goto(280, -70)
    goto(280, 70)
    goto(350, 70)
    goto(350, 0)
    goto(280, 0)
    goto(210, 0)
    goto(210, -140)
    goto(140, -140)
    goto(140, 0)
    goto(0, 0)

    if abs(pos()) < 1:
        break
end_fill()
done()