Uri Solution 1387 Og

#include<stdio.h>
int main()
{
    int a,b;
    while(1)
    {
      scanf("%d %d",&a,&b);
      if(a==0 && b==0)
      {
          break;
      }
      printf("%d\n",a+b);
    }
    return 0;
}

Comments

Popular posts from this blog

Codeforces Solution 230B T-primes

Uri Solution 2747 Output 1