#include <stdio.h>
#include <math.h>
int main()
{
float input;
printf("\nInput 1.0,1.1,1.2 or 1.3\n");
scanf("%f",&input);
if (fabs((input - 1.0)/1.0)<0.00001)
{
printf("One point zero");
}
else if (fabs((input - 1.1)/1.1)<0.00001)
{
printf("One point one");
}
else if (fabs((input - 1.2)/1.2)<0.00001)
{
printf("One point two");
}
else
{
printf("One point three");
}
return 0;
}