cindy987 cindy987 24-05-2023 Computers and Technology contestada Which correctly calls the add() function? def add(a, b, c): print(a + b + c) add(2; 4; 6) add(2 4 6) add(2, 4, 6) add(2 + 4 + 6)