/* package whatever; // don't place package name! */

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

import java.time.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		long input = 106_988_550L ;
        Duration d = Duration.ofMillis( input );
        String output = d.toString();

        System.out.println( "Milliseconds elapsed: " + input );
        System.out.println( "d.toString(): " + d );
	}
}