/**
  *
  * Beschreibung
  *
  * @version 1.0 vom 18.02.2009
  * @author
  */

public class test {

  public static void main(String[] args) {
    double i,k;

    for(k=-6; k<=7; k++){

     i=0;
     i=i+0.5;

     System.out.println(Math.round(i));


  }


}
