public class Demo { public static void main(String[] args){ int n = Integer.parseInt(args[0]); System.out.println(n + " " + Math.sqrt(n)); } } // // read an integer off the command line // print out that integer and its square root // // Modified to also take a real/float //