Using a Java Input Device
// Get device in one statement
inData = new BuffredReader(new
InputStreamReader(System.in));
String oneLine;
// Store one line of text into oneLine
oneLine = inData.readLine();
Where does the text come from?