package esimene; public class Loim1 { public static void main(String[] args) { new Thread(new Runnable(){ public void run(){ for(int i=1; i<=5; i++){ System.out.println(i); try{Thread.sleep(500);}catch(Exception e){} } } }).start(); System.out.println("ots"); } }