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