/* 2-2_2.c */
#include <stdio.h>
int main(void)
{
printf("%d * %d = %d\n", 2, 3, 2*3);
printf("%d * %d = %d\n", 2, 4, 2*4);
return 0;
}
/* 2-2_2.c */
#include <stdio.h>
int main(void)
{
printf("%d * %d = %d\n", 2, 3, 2*3);
printf("%d * %d = %d\n", 2, 4, 2*4);
return 0;
}