DustyPie5621 DustyPie5621 02-06-2023 Computers and Technology contestada What does the following code do? public int mystery(int a, int b) if (b == 1) { return a; else return a + mystery(a, b - 1); W/ end of method mystery