
import java.io.PrintWriter;
import java.io.FileNotFoundException;


class Mar26 {
	public static void main(String[] args) {

		PrintWriter pw = null; 

		try {
				pw = new PrintWriter("test.txt");

		}
		catch(FileNotFoundException e) {
			System.out.println("Exception caught");
			System.out.println(e);
			System.exit(0);
		}		

		pw.print("Jello ");
		pw.println("Jveryone");
		pw.printf("Jlad to see you\n");	

		pw.close();
	}
}
