#33253: 我是答案快看我


yp11151144@yphs.tp.edu.tw (709-35陳中仁)

學校 : 臺北市私立延平高級中學
編號 : 197065
來源 : [203.72.178.1]
最後登入時間 :
2023-06-19 14:39:34
c004. 10812 - Beat the Spread! -- UVa10812 | From: [203.72.178.2] | 發表日期 : 2022-12-16 13:28

#include <bits/stdc++.h>

using namespace std;

int main() {
    int n, i, s, d;
    cin >> n;
    for ( i = 0; i < n; i ++) {
        cin >> s >> d;
        if (  ( s < d) || ( s + d) % 2) {
            cout << "impossible" << endl;
        } else {
            cout << ( s + d) / 2  << " " << ( s - d) / 2 << endl;
         }
    }

}

 
ZeroJudge Forum