提交时间:2025-07-17 14:30:40
运行 ID: 334072
n=int(input()) b='' if n==0: print(0) else: while n: b=str(n%2)+b n//=2 print(b)