Advertisement
remoncsedu

2778 rem c

Sep 22nd, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.13 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int a,b;
  5. scanf("%d %d",&a,&b);
  6. int div=a/b;
  7. int r=a%b;
  8. printf("%d %d",div,r);
  9. return 0;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement