diff --git a/COBOL/mf/src/.cobolProj b/COBOL/mf/src/.cobolProj
new file mode 100644
index 00000000..6bcc2791
--- /dev/null
+++ b/COBOL/mf/src/.cobolProj
@@ -0,0 +1,167 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/COBOL/mf/src/.gitignore b/COBOL/mf/src/.gitignore
new file mode 100644
index 00000000..eea4e81d
--- /dev/null
+++ b/COBOL/mf/src/.gitignore
@@ -0,0 +1,2 @@
+.cobolBuild
+/Gilded_Rose.bin/
diff --git a/COBOL/mf/src/.project b/COBOL/mf/src/.project
new file mode 100644
index 00000000..a702b492
--- /dev/null
+++ b/COBOL/mf/src/.project
@@ -0,0 +1,17 @@
+
+
+ Gilded Rose
+
+
+
+
+
+ com.microfocus.eclipse.project.cobolBuilder
+
+
+
+
+
+ com.microfocus.eclipse.project.cobolNature
+
+
diff --git a/COBOL/mf/src/GildedRose.cbl b/COBOL/mf/src/GildedRose.cbl
new file mode 100644
index 00000000..28ff10a2
--- /dev/null
+++ b/COBOL/mf/src/GildedRose.cbl
@@ -0,0 +1,72 @@
+program-id. GildedRose as "GildedRose".
+
+file-control.
+ select in-items assign 'in-items'.
+ select items assign 'items'.
+
+data division.
+file section.
+ fd in-items.
+ 01 in-item pic x(58).
+ fd items.
+ 01 item.
+ 02 sell-in pic 9(4).
+ 02 quality pic 9(4).
+ 02 name pic x(50).
+
+working-storage section.
+procedure division.
+ open input in-items output items.
+start-lable.
+ read in-items end go to end-lable.
+ move in-item to item.
+ if name not equal "Aged Brie" and name not equal "Backstage passes to a TAFKAL80ETC concert"
+ if quality greater then 0
+ if name not equal to "Sulfuras, Hand of Ragnaros"
+ compute quality = quality - 1
+ end-if
+ end-if
+ else
+ if quality is less then 50
+ compute quality = quality + 1
+ if name equals "Backstage passes to a TAFKAL80ETC concert"
+ if sell-in less then 11
+ if quality less then 50
+ compute quality = quality + 1
+ end-if
+ end-if
+ if sell-in less then 6
+ if quality less then 50
+ compute quality = quality + 1
+ end-if
+ end-if
+ end-if
+ end-if
+ end-if
+ if name not equal "Sulfuras, Hand of Ragnaros"
+ compute sell-in = sell-in - 1
+ end-if
+ if sell-in is less then 0
+ if name is not equal to "Aged Brie"
+ if name is not equal to "Backstage passes to a TAFKAL80ETC concert"
+ if quality is greater then 0
+ if name is equal to "Sulfuras, Hand of Ragnaros"
+ compute quality = quality - 1
+ end-if
+ end-if
+ else
+ compute quality = quality - quality
+ end-if
+ else
+ if quality is less then 50
+ compute quality = quality + 1
+ end-if
+ end-if
+ end-if
+ write item.
+ go to start-lable.
+end-lable.
+ close items.
+goback.
+
+end program GildedRose.