#include #include int main (){ int j, k; j = abs( 3 ); k = abs( -1 ); printf (" j = %d \n", j); printf (" k = %d\n", k); return 0;}