#include using namespace std; typedef long long ll; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); ll t, d, a, b, k; cin >> t; while(t--){ cin >> d >> a >> b >> k; cout << -1 << "\n"; } return 0; }