mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 06:38:48 +00:00
30 lines
437 B
C++
30 lines
437 B
C++
#include <iostream>
|
|
|
|
using std::cin;
|
|
using std::cout;
|
|
const char endl = '\n';
|
|
|
|
int t;
|
|
|
|
int main() {
|
|
std::ios::sync_with_stdio(false);
|
|
cin.tie(nullptr);
|
|
|
|
cin >> t;
|
|
|
|
while (t--) {
|
|
long long s;
|
|
int m;
|
|
|
|
cin >> s >> m;
|
|
|
|
if (s % 2 || m == 1) {
|
|
cout << -1 << endl;
|
|
} else {
|
|
cout << 2 << ' ' << (s >> 1) << ' ' << (s >> 1) << endl;
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|