Code Snippets C

#include
int main(void)
{
int k, j;
scanf("%o%x", &k, &j);
printf("%o %x", k, j);
return 0;
}