test="sdf+sdf+3423.4"
a=''
for i in reversed(test):
    a=a+i
    if not a.replace('.','').isnumeric():
    	break
print(a[:-1][::-1])