final class A 
{ 
final int a=17; 
public static void main(String... args ) 
{ 
A x=new A(); 
x.a=46; 
} 
}