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