while 1: try: s=input() q,h=s.strip().split('.')[0],s.strip().split('.')[1] n=float(s) d={'0':'零','1':'壹','2':'贰','3':'叁','4':'肆','5':'伍','6':'陆','7':'柒','8':'捌','9':'玖'} d2={0:'',1:'拾',2:'佰',3:'仟',4:'万',5:'亿'} s='人民币' if q !='0': ql=list(q) l=[] while len(ql)>=4: l.append(''.join(ql[-4::])) for ...