Run ID:145067

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

#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>c) cout<<"SQUARE"<<endl; else if(c>d) cout<<"RECTANGLE"<<endl; else cout<<"SAME"<<endl; return 0; }