// editor2
#include<stdio.h>
int main(){
    long long a,b,c;
  if(scanf("%lld %lld %lld",&a,&b,&c)!=3;){
      printf("Invalid Input\n");
      return 0;
  }
    if(a<0 ||b<0 || c<0){
        printf("Invalid Input\n");
        return 0;
    }
     if(a+b<=c || a+c<=b || b+c<=a){
        printf("Invalid Input\n");
        return 0;
    }
    if(a==b && b==c){
        printf("Equilateral\n");
    }else if(a==b || b==c ||a==c){
        printf("Isosceles\n");
    }else{
        printf("Scalene\n");
    }
    return 0;
   

}