s="1p23y4t"
sum=0; t=0
flag=False
for ch in s:
if "0"<=ch<="9":
t=t*10+int(ch)
else:
if flag:
sum+=t
t=0
flag=not flag
print(sum)
该程序段运行后,最后输出的内容是( )