from turtle import ( forward, back, left, right, penup, pendown, color, pensize, speed, backward, circle, begin_fill, end_fill, ) color('hot pink') forward(300) right(360 * 2 / 5) forward(100) right(360 * 2 / 5) forward(100) speed(0) pensize(6) right(360 * 2 / 5) forward(100) right(360 * 2 / 5) forward(100) right(360 * 2 / 5) backward(100) right(90) forward (100) speed(3) color('blue') circle (10) pensize(1) forward(100) right(90) circle (30) penup() forward(300) left(45) pendown() pensize(4) circle(50) right(90) color('red') forward(50) right(90) forward(200) begin_fill() right(360 * 2 / 5) forward(100) right(360 * 2 / 5) forward(100) speed(0) pensize(6) right(360 * 2 / 5) forward(100) right(360 * 2 / 5) forward(100) right(360 * 2 / 5) backward(100) end_fill() left(90) forward(20) right(45) pensize(1) forward(300) input()