Run ID:149707

提交时间:2026-03-16 16:43:21

#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"; } }