/**
<br>
Der Compiler erzeugt die Deklaration "int i=66;"
<br>
Das Programm liefert folgende Ausgabe:
<hr size=5 width="100%">
<blockquote>
<pre>
66
</pre>
</blockquote>
<hr size=5 width="100%">
*/
/*-----------------------------------------------------------------------*/

public class KonstanterAusdruck
{  public static void main(String[] argv)
   {  final int a=12,b=-14,c=3;
      int i=3*(a*c+b);
      System.out.println(i);
   }
}

