Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
68625 胡皓宇 比大小 Python3 Accepted 30 MS 3784 KB 171 2024-03-24 09:35:27

Tests(10/10):


Code:

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