diff --git a/diy2.py b/diy2.py
index 3385124..19e122a 100644
--- a/diy2.py
+++ b/diy2.py
@@ -1,3 +1,5 @@
-score = {'语文':1,'数学':0,'英语':0}
-for i,h in score.items():
-    print(i,h)
\ No newline at end of file
+for i in range(1,8):
+    print('克洛诺斯将第'+str(i)+'个孩子吞进肚子里')
+    if i == 5:
+        continue
+print('第6个孩子宙斯逃过一劫.')
\ No newline at end of file