Run ID:96847
提交时间:2024-11-09 16:57:18
#include <stdio.h> int main() { int a,b,c; while(~scanf("%d%d",&a,&b)){ c=a+b; printf("%d\n",c); } return 0; }