public class Main2 { public static void main(String[] args) { Runnable task = new MyTask2(); Thread thread1 = new Thread(task); Thread thread2 = new Thread(task); thread1.start(); thread2.start(); } }