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