0 / 60 seg.

What will the following Java code output?

class Counter {
    private int count = 0;
    public void increment() {
        count++;
    }
    public int getCount() {
        return count;
    }
}
public class TestCounter {
    public static void main(String[] args) {
        Counter myCounter = new Counter();
        myCounter.increment();
        myCounter.increment();
        System.out.println(myCounter.getCount());
    }
}