Run ID:106190

提交时间:2025-01-15 16:42:36

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