class FloatTest {
public static void main (String args[]) {
// There are 10 0.1's in the next statement
double y = 0.1 + 0.1 + 0.1 + 0.1 + 0.1 +
0.1 + 0.1 + 0.1 + 0.1 + 0.1;
System.out.println (y);
}
}