// CS7 // simple java program to read from a text file and display its // contents import tio.*; class HelloFileRead { public static void main (String [] args) { ReadInput in = new ReadInput("hello.txt"); System.out.println(in.readLine()); } }