a = int(input())
b = int(input())
c = int(input())
if (c >= (a + b)) or (b >= (a + c)) or (a >= (b + c)):
print("NO")
else:
print("YES")
Ответ:
a = float(input('Введите a: '))
b = float(input('Введите b: '))
c = float(input('Введите c: '))
if a<b+c and b<a+c and c<a+b: print('YES')
else: print('NO')
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
a = int(input())
b = int(input())
c = int(input())
if (c >= (a + b)) or (b >= (a + c)) or (a >= (b + c)):
print("NO")
else:
print("YES")
Ответ:
a = float(input('Введите a: '))
b = float(input('Введите b: '))
c = float(input('Введите c: '))
if a<b+c and b<a+c and c<a+b: print('YES')
else: print('NO')