Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
68083 金浩 比大小 Python3 Accepted 29 MS 3764 KB 142 2024-03-19 08:19:11

Tests(10/10):


Code:

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