import java.util.*;
import java.lang.*;

class Main
{
	public static void main (String[] args) throws java.lang.Exception
	{
        
         long startTime = System.currentTimeMillis();
            for(int i = 100000; i > 0; i--) {}
    
  long endTime = System.currentTimeMillis();
  System.out.println("Total elapsed time in execution is :"+ (endTime-startTime));
		
}
}