def printOctal(x): if (x > 1): printOctal(x//8) stdio.writeln(str(x%8) return
this is current code i had which inputted x int