#include #include main() { int b = 0; printf("Enter a number ="); scanf("%d" , &b); for (int i = 1; i <= 12; i++ ) { printf("%d * %d = %d\n",b,i,(b*i)); } }