Write a program that reads an integer representing an angle (in degrees) and prints its cotangent.
Calculate the cotangent as either or .
Round the result to 10 decimal places.
Take into account that the trigonometric functions
sin(), cos() and tan() take an angle in radians. You might need to convert the value from degrees to radians first.