Run ID:71605
提交时间:2024-04-26 21:04:35
a,b,c = input().split() a,b,c = int(a),int(b),int(c) s1 = a * a s2 = b * c if s1 < s2: print("RECTANGLE") elif s1 > s2: print("SQUARE") else: print("SAME")