Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
56265 | zhangweiran | 比大小 | C++ | Accepted | 0 MS | 244 KB | 194 | 2024-11-09 22:43:27 |
#include<iostream> #include<algorithm> using namespace std; int main() { int n,m,k; cin>>n>>m>>k; if(n*n>m*k) cout<<"SQUARE"; else if(n*n<m*k) cout<<"RECTANGLE"; return 0; }