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 f399736c5131f8e5b5060c09f6213a565689c124..dc37cd8edbd7e0548f8ba80dbee3eabfcfd07213 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"
@@ -187,15 +187,18 @@ def 另起一段():
     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.randint(0,len(废话)-1)]
-    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.randint(0,len(废话)-1)]
+        tmp = tmp.replace("x",xx)
+        print(tmp)
+