package simpleIO;import java.io.*;public class SimpleWriter extends BufferedWriter {			public SimpleWriter(String fileName) throws IOException {		super(new FileWriter(fileName));	}	public void putData(double d) throws IOException {		write(d + "");		newLine();		flush();	}		public void putData(int d) throws IOException {		write(d + "");		newLine();		flush();	}	public void putData(char d) throws IOException {		write(d + "");		newLine();		flush();	}	public void putData(boolean d) throws IOException {		if (d) write("true");		else write("false");		newLine();		flush();	}	public void putData(String d) throws IOException {		write(d);		newLine();		flush();	}} // Class SimpleFile	