Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
145836 | Microsoft | 高精度加法 | C++ | Wrong Answer | 56 | 0 MS | 244 KB | 126 | 2024-05-05 17:29:24 |
#include<bits/stdc++.h> using namespace std; int main(){ unsigned long long a,b; cin>>a>>b; cout<<a+b; return 0; }