1297번 풀이 [Python]

sua·2022년 5월 2일
0

Baekjoon

목록 보기
12/161
post-thumbnail

문제


풀이

a, b, c = map(int, input().split())
d = a / ((b ** 2 + c ** 2) ** 0.5)
e = b * d
f = c * d
print(int(e), int(f))
profile
가보자고

0개의 댓글