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