import java.io.*;

public class WriteFile {
   public static void main(String[] argv) throws IOException {
	
      File outputFile = new File(argv[0]);
      FileWriter out = new FileWriter(outputFile);
      out.write("hello there");
      out.write("welcome to Guelph-Humber");
      out.close();
   }
}
