#include <stdio.h>
int main(void)
{
  int ii,jj;
  ii=017;
  jj= 17;
  printf("Value of ii %d\n",ii);
  printf("Value of jj %d\n",jj);
  return 0;
}

