Run ID:118262
提交时间:2025-04-26 13:30:45
#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; }