Run ID:482

提交时间:2022-08-24 09:52:42

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