import math
a = float(input('Wpisz kąt: '))
print(f'sin α = {math.sin(math.radians(a)):0.4f}')
print(f'cos α = {math.cos(math.radians(a)):0.4f}')