#include pv(int a, int b) { printf("%2d\t%3d\t%2d\t%2d\n", a, b, b/a, b%a); } main(void) { pv( 5, 17); pv( 5,-17); pv(-5, 17); pv(-5,-17); exit(0); }