// import the necessary object from Java to use
import java.util.Scanner;

public class GetInput {
  
  public static void main(String[] args) {
    // create a Scanner object
    Scanner inp = new Scanner(System.in);
    
    // Please comment out specific sections in order for program to function as intended.
    //------ SECTION 1
    
    // This line gets the first word input from user and stores it into a String
    String userTyped = inp.next();
    // repeat what the user input by printing it into the screen (output)
    System.out.println(userTyped);
    
    
    //------ SECTION 2
    // notice how it only takes in one word. Let's try to get more
    String fullSentence = inp.nextLine();
    System.out.println(fullSentence);
    
    //----- SECTION 3
    // getting some of the user's number input
    int numInput = inp.nextInt();
    System.out.println(numInput);
    
    //----- SECTION 4
    // prompt the user with a message by printing a message (an output)
    System.out.println("Please put your first name:");
    System.out.println(inp.next());
  }
  
}
