Run ID:126401

提交时间:2025-07-18 16:23:30

#include<bits/stdc++.h> using namespace std; int main() { int a,b,c; cin>>a>>b>>c; if(a>b*c){ cout<<"RECTANGLE"; }else{ cout<<"SQUARE"; } if(a==b*c) { cout<<"SAME"; } return 0; }