Run ID:118263
提交时间:2025-04-26 13:31:31
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c; if(a*a>b*c){ cout<<"SQUARE"; } else if(a*a==b*c){ cout<<"SAME"; } else{ cout<<"RECTANGLE"; } return 0; }