1//it does not seem to work for me with using the double equal sign in
2//the if statement (==). Instead, try this.
3
4Scanner input = new Scanner(System.in);
5
6System.out.print("This is the user's input prompt: ");
7var userInput = input.next();
8
9if(userInput.equals("it is working")) {
10 System.out.println("Thank the lord");
11}