提交时间:2025-07-17 14:32:35
运行 ID: 334076
n=int(input()) b='' if n==0: print(0) else: while n: b=str(n%8)+b n//=8 print(b)