diff --git a/diy.py b/diy.py
new file mode 100644
index 0000000..1bb8c22
--- /dev/null
+++ b/diy.py
@@ -0,0 +1,15 @@
+import turtle
+pen=turtle.Pen()
+screen=turtle.Screen()
+pen.penup()
+pen.goto(100,-100)
+screen.bgcolor("blue")
+pen.write("SB\ndrgv",font=("Times",13,"normal"))
+pen1=turtle.Pen()
+pen1.left(45)
+pen1.forward(100)
+pen1.circle(50,180)
+pen1.right(90)
+pen1.circle(50,180)
+pen1.forward(100)
+turtle.done()
\ No newline at end of file