diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100644
index 0000000..73f69e0
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,8 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
+# Editor-based HTTP Client requests
+/httpRequests/
diff --git a/.idea/modules.xml b/.idea/modules.xml
new file mode 100644
index 0000000..a0733a5
--- /dev/null
+++ b/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/project.iml b/.idea/project.iml
new file mode 100644
index 0000000..c956989
--- /dev/null
+++ b/.idea/project.iml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..94a25f7
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/my.html b/my.html
index 0296029..7b875f1 100644
--- a/my.html
+++ b/my.html
@@ -1,7 +1,25 @@
-
-
Welcome to Git!
+
+
+
+
+
+
+
+Решение первой задачи
+function sum1(a, b){
+return a + b;
+}
+console.log(sum1(1,1));
+
+function sum2(c, d){
+return c + d;
+}
+console.log(sum2(2,5));
+
+
+
+
+
-Let's have some fun!
-New changes!
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..a9afd46
--- /dev/null
+++ b/script.js
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+ Решение первой задачи
+function sum1(a, b){
+return a + b;
+}
+console.log(sum1(1,1));
+
+function sum2(c, d){
+return c + d;
+}
+console.log(sum2(2,5));
+
+ Решение первой задачи
+
+
+
+
+