| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 123941 | 田子熙 | 13求n加到m的和 | C++ | Wrong Answer | 0 MS | 264 KB | 150 | 2025-07-10 15:18:02 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,m; cin>>n>>m; for(int a=n;a<=m;a++){ n=n+1; } cout<<n; return 0; }
------Input------
5 13
------Answer-----
81
------Your output-----
14