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