쎄타 구하는 문제
import math
#빗변 외 입력 받음
AB, BC = int(input()), int(input())
#빗변 구하기
AC = math.hypot(AB, BC)
#역코사인 함수로 쎄타값 구하기(∠MBC = ∠ACB)
dACB = math.acos(BC/AC)
dACB = round(math.degrees(dACB)) #각도값으로 환산
print(f'{dACB}{chr(176)}')
쎄타 구하는 문제
import math
#빗변 외 입력 받음
AB, BC = int(input()), int(input())
#빗변 구하기
AC = math.hypot(AB, BC)
#역코사인 함수로 쎄타값 구하기(∠MBC = ∠ACB)
dACB = math.acos(BC/AC)
dACB = round(math.degrees(dACB)) #각도값으로 환산
print(f'{dACB}{chr(176)}')