9 lines
118 B
C
9 lines
118 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main(void) {
|
|
|
|
printf("%dx%d=%d\n",73,16,73<<4);
|
|
|
|
return EXIT_SUCCESS;
|
|
} |