Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
112652 | 施宸雨 | A+B 输入输出练习II | C | Accepted | 0 MS | 200 KB | 174 | 2025-03-09 20:34:43 |
#include <stdio.h> int main(){ int n; scanf("%d",&n); for(int i=1;i<=n;i++){ int a,b; scanf("%d%d",&a,&b); printf("%d\n",a+b); } return 0; }