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