Run ID:149736

提交时间:2026-03-16 16:54:30

#include <iostream> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; if(b*c>a*a){ cout<<"RECTANGLE"; } else if(a*a>b*c){ cout<<"SQUARE"; }else{ cout<<"SAME"; } }