#include main() { int x, m; x = 15000; m = 1; while (m <= 12) { x = x * 1.01; printf("balance --- %d yen \n", x); m = m + 1; } }