Such as
Scanner keyboard = new Scanner(System.in);
String productName1, productName2;
System.out.println("First product's info: ");
System.out.print("Product name: ");
productName1 = keyboard.nextLine();
System.out.println("");
System.out.println("Second product's info: ");
System.out.print("Product name: ");
How would I go about making it to where, when the user, per-say, types in aPPles as productName1. When i reprint it later, how would I make the system print it was Apples. User input print :aPPles reprint: Apples