| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 79273 | sh25_shenpy | 两个数字做运算 | C++ | Accepted | 0 MS | 240 KB | 188 | 2026-01-01 18:27:37 |
#include<bits/stdc++.h> using namespace std; int main() { int a,b; cin>>a>>b; if(a>b) cout<<abs(a-b); else if(a==b) cout<<a*b; else cout<<a+b; return 0; }