class AddMain {
int a, b;
public static void main(String ar[]){
System.out.println(a + b);
}
}
This is simple java program and my question is why we don't use semicolon at the end of the class braces. Please let me know and thanks to all.