两数求和

#include<stdio.h>

int main()

{  int a,b;

    while(~scanf("%d%d",&a,&b)

    printf("%d",a+b);

   return 0;

}

原文地址:https://www.cnblogs.com/digulove/p/4663068.html