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