Advertisement
Guest User

Untitled

a guest
Feb 27th, 2020
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.16 KB | None | 0 0
  1. #include<iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6.  
  7. {
  8.  
  9. int n,l,C,P;
  10.  
  11. cin>>n;
  12.  
  13. cin>>l;
  14.  
  15. C=l/n;
  16.  
  17. P=n-l%n;
  18.  
  19. cout<<C<<" "<<P;
  20.  
  21. return 0;
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement