Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
845 | A班-许锘林 | 大数的平方 | C++ | Accepted | 100 | 1 MS | 260 KB | 206 | 2024-11-30 10:47:43 |
#include <bits/stdc++.h> using namespace std; int main() { int a,b; cin>>a>>b; if(a > b) { cout<<a * a; } else { cout<<b * b; } return 0; }