public class BlockTest {
  public static void main(String[] args) {
   {int wert = 0;
    wert = wert + 17;
    {   
         int total = 100;
         { 
          wert = wert - total;
         }
    }
    wert = 2*wert;
   }
  }
}
