a,b,c=map(int,input().split())
if a+b<=c:
print('Not triangle')
else:
if a2+b2==c2:
print('Right triangle')
elif a2+b2>c2 and b2+c2>a2 and a2+c2>b2:
print('Acute triangle')
else:
print('Obtuse triangle')
if a==b or b==c or a==c:
print('Isosceles triangle')
if a==b and b==c:
print('Equilateral triangle')