Write a complete C# program that expects three (3) command line arguments: two
numbers separated by an operator: + - * /
The program should do the specified computation and print the results
> calc 3.1 + 2.01 =>prints 5.11
> calc 2 * 3.3 =>prints 6.6