/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby,
C#, VB, Perl, Swift, Prolog, Javascript, Pascal, HTML, CSS, JS
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
#include <stdio.h>
int main()
{
float input;
printf("\nInput 1.0,1.1,1.2 or 1.3\n");
scanf("%f",&input);
if (input == 1.0)
{
printf("One point zero");
}
else if (input == 1.1)
{
printf("One point one");
}
else if (input == 1.2)
{
printf("One point two");
}
else
{
printf("One point three");
}
return 0;
}