diff --git a/.idea/misc.xml b/.idea/misc.xml
index 9c8e7400..52b96137 100644
--- a/.idea/misc.xml
+++ b/.idea/misc.xml
@@ -1,6 +1,6 @@
-
+
\ No newline at end of file
diff --git a/src/main/kotlin/Main.kt b/src/main/kotlin/Main.kt
index aade54c5..22571423 100644
--- a/src/main/kotlin/Main.kt
+++ b/src/main/kotlin/Main.kt
@@ -1,3 +1,140 @@
-fun main(args: Array) {
- println("Hello World!")
+import java.util.Scanner
+
+data class Archive(val name: String, val notes: MutableList = mutableListOf())
+data class Note(val title: String, val content: String)
+
+open class Menu(private val title: String) {
+ protected val scanner = Scanner(System.`in`)
+ protected val items = mutableListOf