class Hovedprogram { public static void main(String[] args) { CountMonitor monitor = new CountMonitor(); Runnable task = new MyTask(monitor); Thread worker1 = new Thread(task); Thread worker2 = new Thread(task); worker1.start(); worker2.start(); } }