Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
36926 | YOYOLEE-李昕颖 | 大整数加法 | C++ | Compile Error | 0 MS | 0 KB | 163 | 2024-01-18 14:05:12 |
#include<bits/stdc++.h> using namespace std; int main() { string a,b; cin>>a>>b; for(int i=0;i<strlen(a);i++){ cout<<a[i]+b[i]-'0'; } return 0; }