package Test; import java.util.Scanner; public class Shopee { public static int fun(int h, int l) { if (h == 2 ) { return l; }else if (l == 2) { return h; } return fun(h - 1, l) + fun(h, l - 1); } public static void main(String[] args) { Scanner scanner = new Scanner(System.i...