#include int main(){ int i, j; for(i = 0; i < 6; i ++) for(j = 0; j < 7; j ++) printf("(%d,%d)->(3,6) = %d\n", i, j, abs(i-3)+abs(j-6)); return 0;}