class xy2 {

  public static void main (String[] args) {
    
    int y = 1;

    for (int i=2; i<18; i++) {
      if (i!=17) System.out.println(y);
	else System.out.println("Geschafft - :"+y);
      y = y-i;
    }
  }
}

