public class B { public static void main(String[] argv) { Integer two = 2; Integer four= 4; System.err.println("min(2,4)=>"+ Utils.min(two,four)); System.err.println("max(2,4)=>"+Utils.max(two,four)); } } aspect X { static T Utils.max(T first,T second) { if (first.intValue()>second.intValue()) return first; else return second; } } class Utils { static T min(T first,T second) { if (first.intValue()