class HelloWorld {
public static void main(String args[]) {
System.out.println("hello world");
byte a=40;
byte b=50;
byte c=(byte)(a*b);
...