import java.util.ArrayList;
public class Exceptional
{
    public static void main(String[] args)
    {
        System.out.println("I am on the correct side of the weeds.");
        //int x = Integer.parseInt("Pizza");
        ArrayList<String> al = null;
        al.add("dynamite");
        System.out.println("I am food fer da woims.");

    }
}