import tio.*; class ExceptionExOne{ public static void main(String[] args){ int input; System.out.print("Please enter an integer number: "); input = Console.in.readInt(); System.out.println("This line is only reached if reading from input"); System.out.println("does not throw a NumberFormatException."); System.out.println((100/input)); System.out.println("This line is only reached if we have not devided"); System.out.println("by 0."); } }