String properOrImproper(int[] a) { if (Math.abs(a[0]) >= Math.abs(a[1])) return "Improper"; return "Proper"; }