Run ID:49751
提交时间:2023-07-11 15:14:50
#include<iostream> using namespace std; int main(){ int a,b,c,z,ch; cin>>a>>b>>c; z=a*a; ch=b*c; if(z>ch){ cout<<"SQUARE"; }else if(ch>z){ cout<<"RECTANGLE"; }else{ cout<<"SAME"; } }