fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. void solve(){
  5. int n;
  6. cin>>n;
  7.  
  8. if(n%4 == 0 && n%6==0){
  9. cout<<n/6<<" "<<n/4<<endl;
  10. }
  11. if(n%4 == 0 && n%6!=0){
  12. cout<<n/6<<" ";
  13. }
  14. if(n%4 == 0 && n%6==0){
  15. cout<<n/4;
  16. }
  17.  
  18.  
  19. cout<<-1<<endl;
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31. }
  32. int main() {
  33. int t;
  34. cin>>t;
  35. while(t--){
  36. solve();
  37. }
  38. return 0;
  39. }
Success #stdin #stdout 0.01s 5292KB
stdin
4
4
7
24
998244353998244352
stdout
0 -1
-1
4 6
6-1
-1