Run ID:116889

提交时间:2025-04-12 18:13:35

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