Run ID:26294

提交时间:2022-05-18 14:46:03

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