Run ID:126413

提交时间:2025-07-18 16:53:13

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