diff --git a/math/.idea/misc.xml b/math/.idea/misc.xml
new file mode 100644
index 0000000..0548357
--- /dev/null
+++ b/math/.idea/misc.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/math/.idea/modules.xml b/math/.idea/modules.xml
new file mode 100644
index 0000000..a0d31aa
--- /dev/null
+++ b/math/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/math/.idea/workspace.xml b/math/.idea/workspace.xml
new file mode 100644
index 0000000..5a0ca29
--- /dev/null
+++ b/math/.idea/workspace.xml
@@ -0,0 +1,262 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1519869447578
+
+
+ 1519869447578
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/math/math.iml b/math/math.iml
new file mode 100644
index 0000000..c90834f
--- /dev/null
+++ b/math/math.iml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/math/out/production/math/math.class b/math/out/production/math/math.class
new file mode 100644
index 0000000..edaec7f
Binary files /dev/null and b/math/out/production/math/math.class differ
diff --git a/math/src/math.java b/math/src/math.java
new file mode 100644
index 0000000..dedd5de
--- /dev/null
+++ b/math/src/math.java
@@ -0,0 +1,69 @@
+public class math {
+
+
+ public static void main(String[] args)
+ {
+ System.out.println( ((5+4)-12) + " : " + subtract(add(5,4),12) );
+ System.out.println((5*4) + " : "+ multiply(5,4) );
+ System.out.println((20/4) + " : "+ divide(20,4) );
+ System.out.println((20%3) + " : "+ modulo(20,3) );
+ }
+
+ private static int add(int x, int y)
+ {
+ int result = 0;
+ for( int i=0; i < x; i = i + 1)
+ result = result + 1;
+
+ for( int i=1; i <= y; i= i + 1)
+ result = result + 1;
+
+ return result;
+ }
+
+ private static int subtract(int x, int y)
+ {
+ int result = add(x,0);
+
+ for( int i=0; i < y; i = i + 1)
+ result = result - 1;
+
+ return result;
+ }
+ private static int multiply(int x, int y)
+ {
+ int result =0;
+ for(int i=0; i= y; i++){
+ counter++;
+ result = result - y;}
+
+ return counter;
+
+ }
+ private static int modulo(int x, int y){
+
+ int result = x;
+ int counter = 0;
+ for (int i = 0; result >= y; i++){
+ counter++;
+ result = result - y;}
+
+ return result;
+
+
+ }
+
+
+
+
+}