~cpp #include<stdio.h> main(void) { int a; int b; scanf("%d",&a); for(b=1;b<10;b++) printf("%d*%d=%d\n",a,b,a*b); return 0; }