diff --git a/.idea/misc.xml b/.idea/misc.xml
index cf9abe6..cbbff6a 100644
--- a/.idea/misc.xml
+++ b/.idea/misc.xml
@@ -1,6 +1,6 @@
-
+
\ No newline at end of file
diff --git a/README.md b/README.md
index 931badb..a96c4b3 100644
--- a/README.md
+++ b/README.md
@@ -24,6 +24,10 @@ HINT: CR Computer Science Discord groups are a great way to play this game remot
**After 5 rounds, modify this README.md with a paragraph describing your attempt to stump your partner and the steps your partner took to identify and correct the error or the steps you think they should have used if they didn't solve the problem.**
+## ***Stump the Chump Results:***
+In an attempt to stump my partner, I first changed the line public static void main(String[ ] args) { by deleting the word "void" and changing the [] to (). Then I deleted the ';' after the line System.out.println(y/x) and changed println to print. I then threw in a little integer division with the line System.out.print(x / y) [sic] and deleted one of the closing "}" from the end of the program.
+My partner and I did not have a thorough discussion since this all happened over comments in Canvas, but they were able to find all errors prior to running the program.
+
---
## Part 2: Date Display Program
diff --git a/src/Date.java b/src/Date.java
new file mode 100644
index 0000000..4bce7b8
--- /dev/null
+++ b/src/Date.java
@@ -0,0 +1,22 @@
+public class Date {
+ public static void main(String[] args) {
+ // System.out.println("Hello World");
+
+ String day, date, month, year;
+ day = "Wednesday";
+ date = "24";
+ month = "January";
+ year = "2024";
+
+// System.out.println(day);
+// System.out.println(date);
+// System.out.println(month);
+// System.out.println(year);
+
+ System.out.println("Today is " + day + ", " + month + " " + date + "th, " + year + ".");
+ System.out.println("Today is " + day + ", " + date + " " + month + ", " + year + ".");
+
+
+ }
+
+}
\ No newline at end of file
diff --git a/src/StumpTheChump.java b/src/StumpTheChump.java
index dffc096..9e3d3f5 100644
--- a/src/StumpTheChump.java
+++ b/src/StumpTheChump.java
@@ -1,6 +1,18 @@
public class StumpTheChump {
// Initially working program.
+// public static main(String() args) {
+// System.out.println("Hi Chump, can you be stumped?");
+// int x = 2;
+// int y = 4;
+// System.out.print(y / x)
+// System.out.print(x / y);
+//
+
public static void main(String[] args) {
System.out.println("Hi Chump, can you be stumped?");
+ double x = 2.0;
+ double y = 4.0;
+ System.out.println(y / x);
+ System.out.println(x / y);
}
}