运行下列程序, 输出的结果是? ( )
def js(n):
s = 0
while n:
s = s * 10+n % 10
n //= 10
return s
print(js(20230110))
20230110
01103202
2301102
1103202