Решение:
Python
a = int(input())
b = int(input())
c = int(input())
if (a or b or c) > 90:
print('тупой')
elif (a or b or c) == 90:
print('прямой')
else:
print('острый')
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Решение:
Python
a = int(input())
b = int(input())
c = int(input())
if (a or b or c) > 90:
print('тупой')
elif (a or b or c) == 90:
print('прямой')
else:
print('острый')