import java.io.*;

public class Append {
   public static void main(String argv[]) throws IOException {
      File f = new File("welcome.txt");
      RandomAccessFile raf = new RandomAccessFile(f, "rw");
      raf.seek(raf.length());
      raf.writeBytes("HELLO AND BYE");
      raf.close();
   }
}

