#include <iostream>
using namespace std;
/* What does the execution of this program demonstrate? */

int main(){
  double d;

  if (10 == 10.0) cout << "yes\n";

  for(d = 0.1; d!=10; d+=0.1){
      cout << d << endl;
  }
  return 0;
}

