n = int(input()) while n >= 1 : print(n, end = ' ') n = int(n/2)
看到题解说C++是因为要开longlong 请问python为什么会过不了