import java.io.*;

public class test_5 {
  public static void main(String [] args){
    FileInputStream x;
    try {
      try {
	x = new FileInputStream("myfile");
      } catch(FileNotFoundException e1){
	System.out.println("file not found:"+e1);
      } 
    } catch(Exception IOException){
      System.out.println("IO exception");
    } finally {
      System.out.println("done");
    }
  }
}

