10 lines
155 B
C
10 lines
155 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
printf("%d\n", 72);
|
||
|
printf("%o\n", 72);
|
||
|
printf("%x\n", 72);
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|