mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
12 lines
235 B
Python
12 lines
235 B
Python
def problem_p02743(input_data):
|
|
from decimal import Decimal
|
|
|
|
a, b, c = list(map(int, input_data.split()))
|
|
|
|
if Decimal(a).sqrt() + Decimal(b).sqrt() < Decimal(c).sqrt():
|
|
|
|
return "Yes"
|
|
|
|
else:
|
|
|
|
return "No"
|