import java.util.ArrayList; public class Exceptional { //private static ArrayList al; public static void main(String[] args) { System.out.println("I am now alive and on"); System.out.println("the correct side of the weeds"); int x = Integer.parseInt("445"); System.out.println(x); int y = Integer.parseInt("duck egg"); //al.add("foo"); System.out.println("I am dead now"); } }