public static void Main()
radians = angle * (Math.PI / 180);
angle = radians * (180 / Math.PI);
Console.WriteLine("The arctangent of the angle formed by the x-axis and ");
Console.WriteLine("a vector to point ({0},{1}) is {2}, ", x, y, radians);
Console.WriteLine("which is equivalent to {0} degrees.", angle);