diff --git a/index.js b/index.js
deleted file mode 100644
index 1ebf0dd..0000000
--- a/index.js
+++ /dev/null
@@ -1,20 +0,0 @@
-
-function addition(x,y) {
- var z = x + y
- console.log(z)
-}
-
-function subtraction(x,y) {
- var z = x - y
- console.log(z)
-}
-
-function multiplication(x,y) {
- var z = x * y
- console.log(z)
-}
-
-function division(x,y) {
- var z = x / y
- console.log(z)
-}
diff --git a/scripts/index.js b/scripts/index.js
new file mode 100644
index 0000000..730e3f9
--- /dev/null
+++ b/scripts/index.js
@@ -0,0 +1,32 @@
+/* Math Functions */
+function addition(x,y) {
+ var z = x + y
+ console.log(z)
+}
+
+function subtraction(x,y) {
+ var z = x - y
+ console.log(z)
+}
+
+function multiplication(x,y) {
+ var z = x * y
+ console.log(z)
+}
+
+function division(x,y) {
+ var z = x / y
+ console.log(z)
+}
+
+var sum = addition(10,12)
+var dif = subtraction(10,8)
+var prod = multiplication(6,3)
+var div = division(100,5)
+
+if (sum>dif) {
+ console.log("the sum is greater than the difference")
+}
+else {
+ console.log("the difference is greater than the sum")
+}
diff --git a/index.css b/styles/index.css
similarity index 100%
rename from index.css
rename to styles/index.css