运行下列程序, 输出的结果是? ( )
def nxs(x) :
s = 0
while x:
s = s * 10 + x % 10
x //= 10
return s
print(nxs(106) )
106
610
160
601