diff --git a/diy1.py b/diy1.py
index 7638f85..c36d75a 100644
--- a/diy1.py
+++ b/diy1.py
@@ -9,12 +9,12 @@ screen.bgcolor('black')
 
 i=0
 while i<135:
-    pen.pencolor('pink')
+    screen.pencolor('pink')
     pen.penup()
     pen.goto(0,0)
     pen.forward(200)
     pen.pendown()
-    pen.circle(100)
+    screen.circle(100)
     pen.left(2)
     i+=1