public static class Calculator { //TODO Task 3.1 Add a static method named Addition that accepts two parameters public static double Addition(double a, double b) { return a + b; } //END of TODO 3.1 }