View Code of Problem 110

#include<stdio.h>
#include<string.h>
#include<math.h>
#include<algorithm>
using namespace std;

int main()
{
   long long x,y;
    while(scanf("%lld %lld",&x,&y) !=EOF)
        printf("%lld\n",x+y);

   return 0;
}

Double click to view unformatted code.


Back to problem 110