0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 01:25:25 +00:00
OI-codes/Luogu/P8468/P8468.cpp

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;
}