#include <stdio.h>
int main () {
float a = 1.;
int b = 1 ;
FILE *point = fopen("data.dat","w");
fprintf(point,"%f %d \n",a,b);
fclose(point);
}