李雨昊 • 10个月前
#include<stdio.h> using namespace std; int main(){ int a,b; while(scanf("%d %d",&a,&b) != EOF){ printf("%d\n",a+b); } }
评论: