Advertisement
Saleh127

CF 1389A

Jul 29th, 2020
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. #define test int t; cin>>t; while (t--)
  4. #define ll long long int
  5. #define fellow_junior ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
  6. int main()
  7. {
  8. fellow_junior
  9.  
  10. test
  11. {
  12. ll a,c,d,e,f,i,j;
  13. cin>>a>>c;
  14. if(a*2>c)
  15. {
  16. cout<<-1<<" "<<-1<<endl;
  17. }
  18. else
  19. {
  20. cout<<a<<" "<<2*a<<endl;
  21. }
  22. }
  23.  
  24. return 0;
  25. }
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement