#include <stdio.h>
#include <stdlib.h>
int main() {
char str[] = "The results are 4.25% above average";
float amount = atof(&str[16]);
printf("%f", amount);
return 0;
}