Run ID:149757

提交时间:2026-03-16 17:02:13

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