s=input("请输入字符串:")
count=0
for i in s:
if i>="0" and i<="9" :
count+=1
print(s[count:count+3])
若输入的字符串为"AB12CCC222GGBD",则程序运行的结果为( )