class Operator1 { public static void main(String args[]) { int a=2,b=3; float ch=(1*a*b)/2; System.out.print(ch); } }