杭电1091

来源:互联网 发布:diy服装设计软件 编辑:程序博客网 时间:2024/05/29 16:28
#include <stdio.h>int main (void){    int a,b;    while(1)    {        scanf("%d%d",&a,&b);        if(a==0&&b==0)            break;        printf("%d\n",a+b);    }    return 0;}