#include int main(void) { char i, j, k; scanf("%c %c %c", &i, &j, &k); printf("The first input was %c \n", i); printf("The third input was %c \n", k); printf("Their product is %c \n", i * k); }