// TODO Task 3.2 Add code to call the Addition method... class Program { static void Main() { double result = Calculator.Addition(1.5, 3.6); Console.WriteLine(result); } }