#include <stdio.h>
int main() {
// Input and output with floating-point numbers
float floatNumber;
printf("Enter a floating-point number: ");
scanf("%f", &floatNumber);
printf("You entered: %f\n", floatNumber);
return 0;
}