Run ID:106191

提交时间:2025-01-15 16:43:24

def ten_to_two(n): res="" while n!=0: res+=str(n%2) n=n//2 return res[::-1] n=int(input()) print(ten_to_two(n))