1 2 3 4 5 6 7 8 9
package b; public class B { public int lesser(int x, int y) { return x < y ? x : y; } }