Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
113960 石茂诤 A+B 输入输出练习II C Accepted 1 MS 196 KB 174 2025-03-18 13:18:27

Tests(1/1):


Code:

#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; }