본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 31798번 단원평가

by 현장 2024. 5. 7.

-Code

from math import sqrt

nums = list(map(int, input().split()))
a, b = sorted(nums[:2])
c = nums[2]

print(c ** 2 - b if a == 0 else int(sqrt(a + b)))