UVa 10812 – Beat the Spread!


/*
User ID: turing_13
Link: http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=24&page=show_problem&problem=1753
*/

#include <bits/stdc++.h>

using namespace std;

int main()
{
    int i,n;
    scanf("%d",&n);
    for(i=0; i<n; i++)
    {
        int s,d,a,b;
        scanf("%d %d",&s,&d);
        a=(s+d)/2;
        b=(s-a);
        if(a>-1 && b>-1 && (a+b)==s && (a-b)==d)
        {
            printf("%d %d\n",a,b);
        }
        else
        {
            printf("impossible\n");
        }
    }
    return 0;
}

0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments