2389: Triangle Times

Memory Limit:128 MB Time Limit:1.000 S
Creator:
Submit:5 Solved:3

Description

You have trouble remembering which type of triangle is which. You write a program to help. Your program reads in three angles (in degrees). 
• If all three angles are 60, output Equilateral. 
• If the three angles add up to 180 and exactly two of the angles are the same, output Isosceles. 
• If the three angles add up to 180 and no two angles are the same, output Scalene. 
• If the three angles do not add up to 180, output Error. 
你难以记住哪种类型的三角形是哪一种。你编写了一个程序来帮助自己。你的程序读取三个角度(以度为单位)。 
如果所有三个角度都是 60 度,则输出等边三角形(Equilateral)。 
如果三个角度之和为 180 度并且恰好有两个角度相同,则输出等腰三角形(Isosceles)。 
如果三个角度之和为 180 度并且没有两个角度相同,则输出不等边三角形(Scalene)。
 如果三个角度之和不为 180 度,则输出错误(Error)。

Input

The input consists of three integers, each on a separate line. Each integer will be greater than 0 and less than 180. 
输入包括三个整数,每个整数在单独的一行上。 每个整数将大于 0 且小于 180。

Output

Exactly one of Equilateral, Isosceles, Scalene or Error will be printed on one line.  
等边三角形(Equilateral)、等腰三角形(Isosceles)、不等边三角形(Scalene)或错误(Error)中的确切一个将被打印在一行上.

Sample Input

60
70
50

Sample Output

Scalene

Source/Category