#include <stdio.h> int main (void) { int x = 7; for (int i = 1; i <= 10; i++) printf ("%2d *%2d =%3d\n", i, x, i * x); return 0; }