//Test IO class

public class IO_main
{
	public static void main(String[] args)
	{
		IO_methods io = new IO_methods();

		int i = io.readInt("Enter an Integer: ");
		double d = io.readDouble("Enter a Double: ");
		String str = io.readLine("Enter a String: ");

		System.out.println("You entered: " + i + "\n" + d + "\n" + str);


	}
}