#include <stdio.h>

int main(void) {
	// your code goes here
    float x = 1.0f;
    float *f = &x;
    int *d = (int*)((void*)&x);
    printf("%f %d\n", *f, *d);
    *f = *f+65535;
    printf("%f %d\n", *f, *d);
    *d = *d+65535;
    printf("%f %d\n", *f, *d);
	return 0;
}
