Run ID:149778
提交时间:2026-03-16 17:10:59
#include <iostream> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; if(a*a>b*c){ cout<<"SQUARE"; }else if(b*c>a*a){ cout<<"RECTANGLE"; }else{ cout<<"SAME"; } }