#include<stdio.h>int main(){int x1 = 0;int x2 = 0;int x3 = 0;int hole1,hole2,hole3;for (hole1 = 0; hole1 <= 48; hole1++)for (hole2 = 0; hole2 <= 48; hole2++)for (hole3 = 0; hole3 <= 48; hole3++){x1 = hole1;x2 = hole2;x3 = hole3;x1 = x1 - x2;/*1-->2*/x2 = 2 * x2;x2 = x2 - x3;/*2-->3*/x3 = 2 * x3;x3 = x3 - x1;/*3-->1*/x1 = 2 * x1;if (x1 == 16 && x2 == 16 && x3 == 16)printf("Hole1 orignally has %d rabbits\nHole2 orignally has %d rabbits\nHole3 orignally has %d rabbits\n", hole1, hole2, hole3);}return 0;}