Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
84280 丁俊杰 比大小 Python3 Accepted 38 MS 3768 KB 147 2024-07-15 14:53:52

Tests(10/10):


Code:

a,b,c=map(int,input().split()) s1=a*a s2=b*c if s1>s2: print("SQUARE") elif s1<s2: print("RECTANGLE") else: print("SAME")