Write a program that reads a sequence of angles in degrees, and prints their sine and their cosine.
Input
Input consists of a sequence of real numbers that represent angles in degrees.
Output
For each given angle, print a line with its sine and its cosine. Print all the numbers with six digits after the decimal point.
Observation
Use the procedures that your programming language already provides to compute sines and cosines.
Input
90 450 60 10.5
Output
1.000000 0.000000 1.000000 0.000000 0.866025 0.500000 0.182236 0.983255