/in/foo.c: In function 'main':
/in/foo.c:5:11: warning: format '%f' expects argument of type 'float *', but argument 2 has type 'double *' [-Wformat=]
scanf("%1f %1f",&a,&b);
^
/in/foo.c:5:15: warning: format '%f' expects argument of type 'float *', but argument 3 has type 'double *' [-Wformat=]
scanf("%1f %1f",&a,&b);
^
/in/foo.c:7:2: error: expected ',' or ';' before 'printf'
printf("%.61f\n",min);
^~~~~~
/in/foo.c:6:9: warning: unused variable 'min' [-Wunused-variable]
double min= a<b||a==b
^~~