About
a = int(raw_input()) b = int(raw_input()) c = int(raw_input())
if a==b and b==c: print("Equilateral") elif a==b and b!=c: print("Isosceles") elif a!=b and b!=c: print("Scalene") elif a+b+c!=180: print("Error")
a = int(raw_input()) b = int(raw_input()) c = int(raw_input())
if a==b and b==c: print("Equilateral") elif a==b and b!=c: print("Isosceles") elif a!=b and b!=c: print("Scalene") elif a+b+c!=180: print("Error")