Run ID:57573
提交时间:2023-09-03 17:10:57
#include<iostream> #include<cmath> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; if(a*a>b*c){ cout<<"SQUARE"<<endl; }else if(a*a==b*c){ cout<<"SAME"<<endl; }else{ cout<<"RECTANGLE"<<endl; } return 0; }