#include main() { int i, x, y; printf("x = "); scanf("%d", &x); y = 0; for (i = 1; i <= 9; i++) { y = y + x; printf("%d ", y); } printf("\n"); }