import math as m

x = float(input())
y = float(input())
pi = 3.14159265358979323846

ret = m.atan(x/y)
dgree = ret * 180/pi
print(f'탄젠트의 역삼각함수 = {ret}\n세타의 각도 = {dgree}도')

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: