Run ID:27689
提交时间:2022-06-09 20:24:01
#include <iostream> #include <cstdlib> #include <cstdio> #include <cstring> 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<<"RECTANGLE"<<endl; } else { cout<<"SAME"<<endl; } return 0 ; }