import java.util.Scanner;
import java.io.*;

public class FileNotFound
{
   //-----------------------------------------------------------------
   //  Deliberately try to open a file that does not exist.
   //-----------------------------------------------------------------
   public static void main (String[] args) throws FileNotFoundException
   {
		Scanner scan = new Scanner (new File("myfile.txt"));

	   int number = scan.nextInt();

		System.out.println ("This text will NOT be printed.");
   }
}
