from turtle import ( forward, back, left, right, penup, pendown, color, ) color("orange") forward(100) right(360 / 10) forward(25) right(360 / 10) forward(25) right(360 / 20) forward(200) right(360 / 5) forward(50) right(360 / 10) forward(30) left(360 / 10) forward(30) right(360 / 10) forward(50) right(360 / 5) forward(200) right(360 / 20) forward(25) right(360 / 10) forward(25) color("yellow") forward(36) right(360 * 2 / 5) forward(36) right(360 * 2 / 5) forward(36) right(360 * 2 / 5) forward(36) right(360 * 2 / 5) forward(36) right(360 * 2 / 5) input()