Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
68626 赵乘浩 比大小 Python3 Accepted 36 MS 3760 KB 155 2024-03-24 09:36:46

Tests(10/10):


Code:

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