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

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

import java.math.*;

/* 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
	{
		List < String > list = 
			new ArrayList<>(
				List.of( "200.1043725170" , "100.1043725171" , "100.1043725170" , "65535.4294967295" , "4294967295.65535" ) 
			)
		;
		list.sort( Comparator.comparing( BigDecimal::new ) );
		
		System.out.println( list ) ;
	}
}