| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 12218 | A班-袁誉晏 | 两数比大小 | C++ | Accepted | 100 | 1 MS | 268 KB | 181 | 2025-07-08 16:39:11 |
#include <bits/stdc++.h> using namespace std; int s(int a,int b) { if(a>b) return a; else return b; } int main() { int c,d; cin>>c>>d; cout<<s(c,d); return 0; }