public static void main(String[] args) throws InterruptedException {
long i = 1000000000l;
while(i!=0){
//first run
i = i--;
System.out.println("i----" + i);
//second run
// long a = i--;
// System.out.println("a----" + a);
Thread.sleep(500);
//why????????
}