diff --git a/.idea/.name b/.idea/.name
new file mode 100644
index 0000000..002da1d
--- /dev/null
+++ b/.idea/.name
@@ -0,0 +1 @@
+Main.java
\ No newline at end of file
diff --git a/src/Main.java b/src/Main.java
index 79f5192..a7af42f 100644
--- a/src/Main.java
+++ b/src/Main.java
@@ -1,16 +1,9 @@
-//TIP To Run code, press or
-// click the icon in the gutter.
+import java.util.Scanner;
public class Main {
public static void main(String[] args) {
- //TIP Press with your caret at the highlighted text
- // to see how IntelliJ IDEA suggests fixing it.
- System.out.printf("Hello and welcome!");
- System.out.printf("This is an 568 crore project");
+ Scanner scanner = new Scanner(System.in);
+ System.out.println("Enter a message to display:");
+ String message = scanner.nextLine();.
- for (int i = 1; i <= 5; i++) {
- //TIP Press to start debugging your code. We have set one breakpoint
- // for you, but you can always add more by pressing .
- System.out.println("i = " + i);
- }
- }
-}
+// add line to display message
+// add line to close scanner }}
\ No newline at end of file