var sleepTime = 1000;

for(int i=0; i<sleepTime; i++) {

    Thread.sleep(i);

}


명쾌