#include <stdio.h>
int main () {
    volatile float a;
    a = 1000;
    a += 1E10;
    a -= 1E10;
    printf ("%f\n", a);
    return 0;
}
