0 / 60 seg.

What will the following Java code output?

class Test {
    static final int DATA = 9;
    static {
        System.out.println(DATA);
    }
}