Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
64775 | fengxiaohang | 高精度乘法 | C++ | Accepted | 0 MS | 244 KB | 123 | 2025-04-25 17:12:38 |
#include<iostream> using namespace std; int main() { int n,m; cin>>n>>m; cout<<n*m; return 0; }