diff --git a/func.py b/func.py
new file mode 100644
index 0000000..0cd7d14
--- /dev/null
+++ b/func.py
@@ -0,0 +1,9 @@
+sdg=[1,2,3]
+
+def l(fgb):
+    d=0
+    for i in sdg:
+        d=d+i
+    return d
+a=l(sdg)
+print(a)