diff --git a/.idea/adventofcode.iml b/.idea/adventofcode.iml
index a6778c7..60cf802 100644
--- a/.idea/adventofcode.iml
+++ b/.idea/adventofcode.iml
@@ -5,9 +5,13 @@
+
+
+
+
diff --git a/Days/One/OnePart2/Input b/Days/One/OnePart2/input
similarity index 100%
rename from Days/One/OnePart2/Input
rename to Days/One/OnePart2/input
diff --git a/Days/Two/TwoPart1/Cargo.lock b/Days/Two/TwoPart1/Cargo.lock
new file mode 100644
index 0000000..3e00dd1
--- /dev/null
+++ b/Days/Two/TwoPart1/Cargo.lock
@@ -0,0 +1,7 @@
+# This file is automatically @generated by Cargo.
+# It is not intended for manual editing.
+version = 4
+
+[[package]]
+name = "TwoPart1"
+version = "0.1.0"
diff --git a/Days/Two/TwoPart1/Cargo.toml b/Days/Two/TwoPart1/Cargo.toml
new file mode 100644
index 0000000..69d9c4c
--- /dev/null
+++ b/Days/Two/TwoPart1/Cargo.toml
@@ -0,0 +1,6 @@
+[package]
+name = "TwoPart1"
+version = "0.1.0"
+edition = "2021"
+
+[dependencies]
diff --git a/Days/Two/TwoPart1/src/main.rs b/Days/Two/TwoPart1/src/main.rs
new file mode 100644
index 0000000..e7a11a9
--- /dev/null
+++ b/Days/Two/TwoPart1/src/main.rs
@@ -0,0 +1,3 @@
+fn main() {
+ println!("Hello, world!");
+}
diff --git a/Days/Two/TwoPart2/Cargo.lock b/Days/Two/TwoPart2/Cargo.lock
new file mode 100644
index 0000000..377ca77
--- /dev/null
+++ b/Days/Two/TwoPart2/Cargo.lock
@@ -0,0 +1,7 @@
+# This file is automatically @generated by Cargo.
+# It is not intended for manual editing.
+version = 4
+
+[[package]]
+name = "TwoPart2"
+version = "0.1.0"
diff --git a/Days/Two/TwoPart2/Cargo.toml b/Days/Two/TwoPart2/Cargo.toml
new file mode 100644
index 0000000..868bcb4
--- /dev/null
+++ b/Days/Two/TwoPart2/Cargo.toml
@@ -0,0 +1,6 @@
+[package]
+name = "TwoPart2"
+version = "0.1.0"
+edition = "2021"
+
+[dependencies]
diff --git a/Days/Two/TwoPart2/src/main.rs b/Days/Two/TwoPart2/src/main.rs
new file mode 100644
index 0000000..e7a11a9
--- /dev/null
+++ b/Days/Two/TwoPart2/src/main.rs
@@ -0,0 +1,3 @@
+fn main() {
+ println!("Hello, world!");
+}