prison.cpp: In function 'int Get(int)':
prison.cpp:5:2: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
    5 |  if (x==0) return -1; return -2;
      |  ^~
prison.cpp:5:23: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
    5 |  if (x==0) return -1; return -2;
      |                       ^~~~~~
prison.cpp: In function 'int Q(int, int)':
prison.cpp:8:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
    8 |  for (int j=0;j<i;j++) x/=3; return x%3;
      |  ^~~
prison.cpp:8:30: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
    8 |  for (int j=0;j<i;j++) x/=3; return x%3;
      |                              ^~~~~~