#include <stdio.h>

/* What does the execution of this program demonstrate? */

int main(){
  double d;

  if (10 == 10.0) printf("rah\n");

  for(d = 0.1; d!=10; d+=0.1){
    printf("%lf\n", d);
  }
  return 0;
}
