19 lines
179 B
Plaintext
19 lines
179 B
Plaintext
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int main(void) {
|
||
|
printf("%d\n", 72);
|
||
|
printf("%d\n", 0110);
|
||
|
printf("%d\n", 0x48);
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|
||
|
|
||
|
01001
|
||
|
|
||
|
|
||
|
10
|
||
|
11
|
||
|
12
|
||
|
13
|
||
|
14
|
||
|
15
|