| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 75542 | sh25_shenpy | 加法运算(指针) | C++ | Accepted | 0 MS | 236 KB | 195 | 2025-12-07 17:22:01 |
#include <bits/stdc++.h> using namespace std; int GetTwoInts(int a,int b) { if(a==a) return a+b; } int main() { int a,n; cin>>a>>n; cout<<GetTwoInts(a,n); return 0; }