#include <stdio.h>
int main () {
    volatile float a;
    for (a = 0.0; a != 1.0; a += 0.1)
        ;
    printf ("%f\n", a);
    return 0;
}
