Guest User

Untitled

a guest
Nov 24th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. #include<iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. int a;
  7. cin>>a;
  8. while(a--)
  9. {
  10. int b,c;
  11. cin>>b>>c;
  12. int count=0;
  13. for(int i=1;i<=b;i++)
  14. {
  15. for(int k=1;k<=b;k++)
  16. {
  17. if(i*k==c)
  18. {
  19. count++;
  20. }
  21. }
  22. }
  23. cout<<count<<endl;
  24. }
  25. }
Add Comment
Please, Sign In to add comment