Problem #1
10755 – arg order:Write a program that prints one complete line ofoutput and nothing more. The output the program prints is “IN ORDER” if its command-line arguments are in alphabetical ascending order; it prints “NOT IN ORDER” if these arguments are out of order.
Problem #2
10756 – calculator: Write a program that takes three command-linearguments : number operator number and performs the required operation and prints the result on a single complete line in standard output .
(The four operators of a arithmetic, + * – /, must be recognized here.)