0 / 60 seg.

What does the following Java code output?

public class Counter {
    static int count = 0;
    Counter() {
        count++;
    }
    public static void main(String[] args) {
        Counter c1 = new Counter();
        Counter c2 = new Counter();
        System.out.println(Counter.count);
    }
}