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