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