Run ID:145068

提交时间:2026-01-24 20:35:32

#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; int d=a*a; int u=b*c; if(d>u) cout<<"SQUARE"<<endl; else if(u>d) cout<<"RECTANGLE"<<endl; else cout<<"SAME"<<endl; return 0; }