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('острый')
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('острый')