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