//19*x+23*y+z=235 #include <stdio.h> int main() { int x, y, z, t = 4; for(x = 0; x < 15; x++) for(y = 0; y <= 10; y++) for(z = 0; z <= 235; z++) if(235 == 19 * x + 23 * y + z) { if(z < t) { t = z; printf("%d %d %d\n", x, y, t); } } return 0; }