Skip to content
Snippets Groups Projects
18.py 201 B
Newer Older
hacker717's avatar
hacker717 committed
a, b, c = sorted([int(input()) for _ in range(3)])

if (a ** 2 + b ** 2 == c ** 2):
    print("100%")
elif (a ** 2 + b ** 2 < c ** 2):
    print("велика")
else:
    print("крайне мала")