diff --git a/2.py b/2.py
index dc2b2f7..27b39bf 100644
--- a/2.py
+++ b/2.py
@@ -1,5 +1,18 @@
 import turtle
 pen=turtle.Pen()
+pen.penup()
+pen.goto(0,-100)
 pen.write("我看到你就想吐,\n你还是趁早滚,\n反正世界少了你地球一样转!",font=("Time",20,"normal"))
 pen.hideturtle()
-turtle.done()
+pen0=turtle.Pen()
+pen0.color("black")
+pen0.begin_fill()
+pen0.left(45)
+pen0.forward(100)
+pen0.circle(50,180)
+pen0.right(90)
+pen0.circle(50,180)
+pen0.forward(100)
+pen0.end_fill()
+pen.hideturtle()
+turtle.done()
\ No newline at end of file