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