diff --git "a/\350\207\252\345\212\250\347\213\227\345\261\201\344\270\215\351\200\232\346\226\207\347\253\240\347\224\237\346\210\220\345\231\250.py" "b/\350\207\252\345\212\250\347\213\227\345\261\201\344\270\215\351\200\232\346\226\207\347\253\240\347\224\237\346\210\220\345\231\250.py"
index 1d8ce7da1edc02971b9fe4a7a2c7eb0e1f71bf19..09a6e69c4c2167402d83e3977d5884721a393d96 100644
--- "a/\350\207\252\345\212\250\347\213\227\345\261\201\344\270\215\351\200\232\346\226\207\347\253\240\347\224\237\346\210\220\345\231\250.py"
+++ "b/\350\207\252\345\212\250\347\213\227\345\261\201\344\270\215\351\200\232\346\226\207\347\253\240\347\224\237\346\210\220\345\231\250.py"
@@ -186,16 +186,17 @@ def 另起一段():
     xx += "    "
     return xx
 
-
-for x in xx:
-    tmp = str()
-    while ( len(tmp) < 6000 ) :
-        分支 = random.randint(0,100)
-        if 分支 < 5:
-            tmp += 另起一段()
-        elif 分支 < 20 :
-            tmp += 来点名人名言()
-        else:
-            tmp += random.choice(废话)
-    tmp = tmp.replace("x",xx)
-    print(tmp)
+if __name__ == "__main__":
+    xx = input("请输入文章主题:")
+    for x in xx:
+        tmp = str()
+        while ( len(tmp) < 6000 ) :
+            分支 = random.randint(0,100)
+            if 分支 < 5:
+                tmp += 另起一段()
+            elif 分支 < 20 :
+                tmp += 来点名人名言()
+            else:
+                tmp += random.choice(废话)
+        tmp = tmp.replace("x",xx)
+        print(tmp)
\ No newline at end of file