提交时间:2025-07-17 14:30:08

运行 ID: 334068

n=int(input()) s='' while n==0: print('0') break while n!=0: s=str(n%2)+s n=n//2 print(s)